@odoo/o-spreadsheet 18.2.11 → 18.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/o-spreadsheet.cjs.js +610 -170
- package/dist/o-spreadsheet.d.ts +326 -200
- package/dist/o-spreadsheet.esm.js +610 -170
- package/dist/o-spreadsheet.iife.js +610 -170
- package/dist/o-spreadsheet.iife.min.js +424 -388
- package/dist/o_spreadsheet.xml +61 -13
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -971,7 +971,7 @@ interface SheetData {
|
|
|
971
971
|
};
|
|
972
972
|
conditionalFormats: ConditionalFormat[];
|
|
973
973
|
dataValidationRules: DataValidationRuleData[];
|
|
974
|
-
tables: TableData[];
|
|
974
|
+
tables: TableData$1[];
|
|
975
975
|
areGridLinesVisible?: boolean;
|
|
976
976
|
isVisible: boolean;
|
|
977
977
|
panes?: PaneDivision;
|
|
@@ -1031,7 +1031,7 @@ interface ExcelHeaderData extends HeaderData {
|
|
|
1031
1031
|
outlineLevel?: number;
|
|
1032
1032
|
collapsed?: boolean;
|
|
1033
1033
|
}
|
|
1034
|
-
interface TableData {
|
|
1034
|
+
interface TableData$1 {
|
|
1035
1035
|
range: string;
|
|
1036
1036
|
config?: TableConfig;
|
|
1037
1037
|
type?: CoreTableType;
|
|
@@ -1275,6 +1275,51 @@ declare class ColorGenerator {
|
|
|
1275
1275
|
next(): string;
|
|
1276
1276
|
}
|
|
1277
1277
|
|
|
1278
|
+
interface SearchOptions {
|
|
1279
|
+
matchCase: boolean;
|
|
1280
|
+
exactMatch: boolean;
|
|
1281
|
+
searchFormulas: boolean;
|
|
1282
|
+
searchScope: "allSheets" | "activeSheet" | "specificRange";
|
|
1283
|
+
specificRange?: Range;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
/**
|
|
1287
|
+
* Deep copy arrays, plain objects and primitive values.
|
|
1288
|
+
* Throws an error for other types such as class instances.
|
|
1289
|
+
* Sparse arrays remain sparse.
|
|
1290
|
+
*/
|
|
1291
|
+
declare function deepCopy<T>(obj: T): T;
|
|
1292
|
+
declare function unquote(string: string, quoteChar?: "'" | '"'): string;
|
|
1293
|
+
/** Replace the excel-excluded characters of a sheetName */
|
|
1294
|
+
declare function sanitizeSheetName(sheetName: string, replacementChar?: string): string;
|
|
1295
|
+
declare function isMarkdownLink(str: string): boolean;
|
|
1296
|
+
/**
|
|
1297
|
+
* Build a markdown link from a label and an url
|
|
1298
|
+
*/
|
|
1299
|
+
declare function markdownLink(label: string, url: string): string;
|
|
1300
|
+
declare function parseMarkdownLink(str: string): {
|
|
1301
|
+
url: string;
|
|
1302
|
+
label: string;
|
|
1303
|
+
};
|
|
1304
|
+
/**
|
|
1305
|
+
* This helper function can be used as a type guard when filtering arrays.
|
|
1306
|
+
* const foo: number[] = [1, 2, undefined, 4].filter(isDefined)
|
|
1307
|
+
*/
|
|
1308
|
+
declare function isDefined<T>(argument: T | undefined): argument is T;
|
|
1309
|
+
/**
|
|
1310
|
+
* Lazy value computed by the provided function.
|
|
1311
|
+
*/
|
|
1312
|
+
declare function lazy<T>(fn: (() => T) | T): Lazy<T>;
|
|
1313
|
+
/**
|
|
1314
|
+
* Compares two objects.
|
|
1315
|
+
*/
|
|
1316
|
+
declare function deepEquals(o1: any, o2: any): boolean;
|
|
1317
|
+
declare function getUniqueText(text: string, texts: string[], options?: {
|
|
1318
|
+
compute?: (text: string, increment: number) => string;
|
|
1319
|
+
start?: number;
|
|
1320
|
+
computeFirstOne?: boolean;
|
|
1321
|
+
}): string;
|
|
1322
|
+
|
|
1278
1323
|
/**
|
|
1279
1324
|
* Convert a (col) number to the corresponding letter.
|
|
1280
1325
|
*
|
|
@@ -1351,51 +1396,6 @@ declare function formatValue(value: CellValue, { format, locale, formatWidth }:
|
|
|
1351
1396
|
}): FormattedValue;
|
|
1352
1397
|
declare function createCurrencyFormat(currency: Partial<Currency>): Format;
|
|
1353
1398
|
|
|
1354
|
-
interface SearchOptions {
|
|
1355
|
-
matchCase: boolean;
|
|
1356
|
-
exactMatch: boolean;
|
|
1357
|
-
searchFormulas: boolean;
|
|
1358
|
-
searchScope: "allSheets" | "activeSheet" | "specificRange";
|
|
1359
|
-
specificRange?: Range;
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
/**
|
|
1363
|
-
* Deep copy arrays, plain objects and primitive values.
|
|
1364
|
-
* Throws an error for other types such as class instances.
|
|
1365
|
-
* Sparse arrays remain sparse.
|
|
1366
|
-
*/
|
|
1367
|
-
declare function deepCopy<T>(obj: T): T;
|
|
1368
|
-
declare function unquote(string: string, quoteChar?: "'" | '"'): string;
|
|
1369
|
-
/** Replace the excel-excluded characters of a sheetName */
|
|
1370
|
-
declare function sanitizeSheetName(sheetName: string, replacementChar?: string): string;
|
|
1371
|
-
declare function isMarkdownLink(str: string): boolean;
|
|
1372
|
-
/**
|
|
1373
|
-
* Build a markdown link from a label and an url
|
|
1374
|
-
*/
|
|
1375
|
-
declare function markdownLink(label: string, url: string): string;
|
|
1376
|
-
declare function parseMarkdownLink(str: string): {
|
|
1377
|
-
url: string;
|
|
1378
|
-
label: string;
|
|
1379
|
-
};
|
|
1380
|
-
/**
|
|
1381
|
-
* This helper function can be used as a type guard when filtering arrays.
|
|
1382
|
-
* const foo: number[] = [1, 2, undefined, 4].filter(isDefined)
|
|
1383
|
-
*/
|
|
1384
|
-
declare function isDefined<T>(argument: T | undefined): argument is T;
|
|
1385
|
-
/**
|
|
1386
|
-
* Lazy value computed by the provided function.
|
|
1387
|
-
*/
|
|
1388
|
-
declare function lazy<T>(fn: (() => T) | T): Lazy<T>;
|
|
1389
|
-
/**
|
|
1390
|
-
* Compares two objects.
|
|
1391
|
-
*/
|
|
1392
|
-
declare function deepEquals(o1: any, o2: any): boolean;
|
|
1393
|
-
declare function getUniqueText(text: string, texts: string[], options?: {
|
|
1394
|
-
compute?: (text: string, increment: number) => string;
|
|
1395
|
-
start?: number;
|
|
1396
|
-
computeFirstOne?: boolean;
|
|
1397
|
-
}): string;
|
|
1398
|
-
|
|
1399
1399
|
/**
|
|
1400
1400
|
* Return true if the argument is a "number string".
|
|
1401
1401
|
*
|
|
@@ -2414,12 +2414,12 @@ interface ZoneDependentCommand {
|
|
|
2414
2414
|
zone: Zone;
|
|
2415
2415
|
}
|
|
2416
2416
|
declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
|
|
2417
|
-
declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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">;
|
|
2418
|
-
declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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">;
|
|
2419
|
-
declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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">;
|
|
2420
|
-
declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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">;
|
|
2421
|
-
declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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">;
|
|
2422
|
-
declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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">;
|
|
2417
|
+
declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2418
|
+
declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2419
|
+
declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2420
|
+
declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2421
|
+
declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2422
|
+
declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2423
2423
|
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">;
|
|
2424
2424
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
2425
2425
|
declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
@@ -2975,6 +2975,13 @@ interface SplitPivotFormulaCommand extends PositionDependentCommand {
|
|
|
2975
2975
|
interface PaintFormat extends TargetDependentCommand {
|
|
2976
2976
|
type: "PAINT_FORMAT";
|
|
2977
2977
|
}
|
|
2978
|
+
interface PivotStartPresenceTracking {
|
|
2979
|
+
type: "PIVOT_START_PRESENCE_TRACKING";
|
|
2980
|
+
pivotId: UID;
|
|
2981
|
+
}
|
|
2982
|
+
interface PivotStopPresenceTracking {
|
|
2983
|
+
type: "PIVOT_STOP_PRESENCE_TRACKING";
|
|
2984
|
+
}
|
|
2978
2985
|
type CoreCommand =
|
|
2979
2986
|
/** CELLS */
|
|
2980
2987
|
UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCommand | DeleteContentCommand
|
|
@@ -3006,7 +3013,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
|
|
|
3006
3013
|
| UpdateLocaleCommand
|
|
3007
3014
|
/** PIVOT */
|
|
3008
3015
|
| AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
|
|
3009
|
-
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;
|
|
3016
|
+
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 | PivotStartPresenceTracking | PivotStopPresenceTracking;
|
|
3010
3017
|
type Command = CoreCommand | LocalCommand;
|
|
3011
3018
|
/**
|
|
3012
3019
|
* Holds the result of a command dispatch.
|
|
@@ -5830,6 +5837,23 @@ declare class HistoryPlugin extends UIPlugin {
|
|
|
5830
5837
|
private getPossibleRevisionToRepeat;
|
|
5831
5838
|
}
|
|
5832
5839
|
|
|
5840
|
+
declare class PivotPresenceTracker {
|
|
5841
|
+
private trackedValues;
|
|
5842
|
+
private domainToArray;
|
|
5843
|
+
isValuePresent(measure: string, domain: PivotDomain): boolean;
|
|
5844
|
+
isHeaderPresent(domain: PivotDomain): boolean;
|
|
5845
|
+
trackValue(measure: string, domain: PivotDomain): void;
|
|
5846
|
+
trackHeader(domain: PivotDomain): void;
|
|
5847
|
+
}
|
|
5848
|
+
|
|
5849
|
+
declare class PivotPresencePlugin extends UIPlugin {
|
|
5850
|
+
static getters: readonly ["getPivotPresenceTracker"];
|
|
5851
|
+
private trackPresencePivotId?;
|
|
5852
|
+
private tracker?;
|
|
5853
|
+
handle(cmd: Command): void;
|
|
5854
|
+
getPivotPresenceTracker(pivotId: UID): PivotPresenceTracker | undefined;
|
|
5855
|
+
}
|
|
5856
|
+
|
|
5833
5857
|
declare class SplitToColumnsPlugin extends UIPlugin {
|
|
5834
5858
|
static getters: readonly ["getAutomaticSeparator"];
|
|
5835
5859
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
@@ -5954,7 +5978,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
5954
5978
|
type Getters = {
|
|
5955
5979
|
isReadonly: () => boolean;
|
|
5956
5980
|
isDashboard: () => boolean;
|
|
5957
|
-
} & 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>;
|
|
5981
|
+
} & 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>;
|
|
5958
5982
|
|
|
5959
5983
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
5960
5984
|
interface ArgDefinition {
|
|
@@ -6262,7 +6286,7 @@ interface ChartShowValuesPluginOptions {
|
|
|
6262
6286
|
showValues: boolean;
|
|
6263
6287
|
background?: Color;
|
|
6264
6288
|
horizontal?: boolean;
|
|
6265
|
-
callback: (value: number | string, axisId
|
|
6289
|
+
callback: (value: number | string, axisId: string) => string;
|
|
6266
6290
|
}
|
|
6267
6291
|
declare module "chart.js" {
|
|
6268
6292
|
interface PluginOptionsByType<TType extends ChartType$1> {
|
|
@@ -6749,7 +6773,7 @@ interface ChartSubtypeProperties {
|
|
|
6749
6773
|
preview: string;
|
|
6750
6774
|
}
|
|
6751
6775
|
|
|
6752
|
-
interface Props$
|
|
6776
|
+
interface Props$1e {
|
|
6753
6777
|
label?: string;
|
|
6754
6778
|
value: boolean;
|
|
6755
6779
|
className?: string;
|
|
@@ -6758,7 +6782,7 @@ interface Props$1d {
|
|
|
6758
6782
|
disabled?: boolean;
|
|
6759
6783
|
onChange: (value: boolean) => void;
|
|
6760
6784
|
}
|
|
6761
|
-
declare class Checkbox extends Component<Props$
|
|
6785
|
+
declare class Checkbox extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
6762
6786
|
static template: string;
|
|
6763
6787
|
static props: {
|
|
6764
6788
|
label: {
|
|
@@ -6793,10 +6817,10 @@ declare class Checkbox extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
|
6793
6817
|
onChange(ev: InputEvent): void;
|
|
6794
6818
|
}
|
|
6795
6819
|
|
|
6796
|
-
interface Props$
|
|
6820
|
+
interface Props$1d {
|
|
6797
6821
|
class?: string;
|
|
6798
6822
|
}
|
|
6799
|
-
declare class Section extends Component<Props$
|
|
6823
|
+
declare class Section extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
6800
6824
|
static template: string;
|
|
6801
6825
|
static props: {
|
|
6802
6826
|
class: {
|
|
@@ -6930,7 +6954,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
6930
6954
|
getIndex(rangeId: number | null): number | null;
|
|
6931
6955
|
}
|
|
6932
6956
|
|
|
6933
|
-
interface Props$
|
|
6957
|
+
interface Props$1c {
|
|
6934
6958
|
ranges: string[];
|
|
6935
6959
|
hasSingleRange?: boolean;
|
|
6936
6960
|
required?: boolean;
|
|
@@ -6955,7 +6979,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
6955
6979
|
* onSelectionChanged is called every time the input value
|
|
6956
6980
|
* changes.
|
|
6957
6981
|
*/
|
|
6958
|
-
declare class SelectionInput extends Component<Props$
|
|
6982
|
+
declare class SelectionInput extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
6959
6983
|
static template: string;
|
|
6960
6984
|
static props: {
|
|
6961
6985
|
ranges: ArrayConstructor;
|
|
@@ -7022,7 +7046,7 @@ declare class SelectionInput extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
|
7022
7046
|
confirm(): void;
|
|
7023
7047
|
}
|
|
7024
7048
|
|
|
7025
|
-
interface Props$
|
|
7049
|
+
interface Props$1b {
|
|
7026
7050
|
ranges: CustomizedDataSet[];
|
|
7027
7051
|
hasSingleRange?: boolean;
|
|
7028
7052
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7030,7 +7054,7 @@ interface Props$1a {
|
|
|
7030
7054
|
onSelectionRemoved?: (index: number) => void;
|
|
7031
7055
|
onSelectionConfirmed: () => void;
|
|
7032
7056
|
}
|
|
7033
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7057
|
+
declare class ChartDataSeries extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
7034
7058
|
static template: string;
|
|
7035
7059
|
static components: {
|
|
7036
7060
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7058,12 +7082,12 @@ declare class ChartDataSeries extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
|
7058
7082
|
get title(): string;
|
|
7059
7083
|
}
|
|
7060
7084
|
|
|
7061
|
-
interface Props$
|
|
7085
|
+
interface Props$1a {
|
|
7062
7086
|
messages: string[];
|
|
7063
7087
|
msgType: "warning" | "error" | "info";
|
|
7064
7088
|
singleBox?: boolean;
|
|
7065
7089
|
}
|
|
7066
|
-
declare class ValidationMessages extends Component<Props$
|
|
7090
|
+
declare class ValidationMessages extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
7067
7091
|
static template: string;
|
|
7068
7092
|
static props: {
|
|
7069
7093
|
messages: ArrayConstructor;
|
|
@@ -7077,10 +7101,10 @@ declare class ValidationMessages extends Component<Props$19, SpreadsheetChildEnv
|
|
|
7077
7101
|
get alertBoxes(): string[][];
|
|
7078
7102
|
}
|
|
7079
7103
|
|
|
7080
|
-
interface Props$
|
|
7104
|
+
interface Props$19 {
|
|
7081
7105
|
messages: string[];
|
|
7082
7106
|
}
|
|
7083
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7107
|
+
declare class ChartErrorSection extends Component<Props$19, SpreadsheetChildEnv> {
|
|
7084
7108
|
static template: string;
|
|
7085
7109
|
static components: {
|
|
7086
7110
|
Section: typeof Section;
|
|
@@ -7094,7 +7118,7 @@ declare class ChartErrorSection extends Component<Props$18, SpreadsheetChildEnv>
|
|
|
7094
7118
|
};
|
|
7095
7119
|
}
|
|
7096
7120
|
|
|
7097
|
-
interface Props$
|
|
7121
|
+
interface Props$18 {
|
|
7098
7122
|
title?: string;
|
|
7099
7123
|
range: string;
|
|
7100
7124
|
isInvalid: boolean;
|
|
@@ -7107,7 +7131,7 @@ interface Props$17 {
|
|
|
7107
7131
|
onChange: (value: boolean) => void;
|
|
7108
7132
|
}>;
|
|
7109
7133
|
}
|
|
7110
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7134
|
+
declare class ChartLabelRange extends Component<Props$18, SpreadsheetChildEnv> {
|
|
7111
7135
|
static template: string;
|
|
7112
7136
|
static components: {
|
|
7113
7137
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7128,10 +7152,10 @@ declare class ChartLabelRange extends Component<Props$17, SpreadsheetChildEnv> {
|
|
|
7128
7152
|
optional: boolean;
|
|
7129
7153
|
};
|
|
7130
7154
|
};
|
|
7131
|
-
static defaultProps: Partial<Props$
|
|
7155
|
+
static defaultProps: Partial<Props$18>;
|
|
7132
7156
|
}
|
|
7133
7157
|
|
|
7134
|
-
interface Props$
|
|
7158
|
+
interface Props$17 {
|
|
7135
7159
|
figureId: UID;
|
|
7136
7160
|
definition: ChartWithDataSetDefinition;
|
|
7137
7161
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7141,7 +7165,7 @@ interface ChartPanelState {
|
|
|
7141
7165
|
datasetDispatchResult?: DispatchResult;
|
|
7142
7166
|
labelsDispatchResult?: DispatchResult;
|
|
7143
7167
|
}
|
|
7144
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7168
|
+
declare class GenericChartConfigPanel extends Component<Props$17, SpreadsheetChildEnv> {
|
|
7145
7169
|
static template: string;
|
|
7146
7170
|
static components: {
|
|
7147
7171
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7227,12 +7251,12 @@ interface Choice$1 {
|
|
|
7227
7251
|
value: string;
|
|
7228
7252
|
label: string;
|
|
7229
7253
|
}
|
|
7230
|
-
interface Props$
|
|
7254
|
+
interface Props$16 {
|
|
7231
7255
|
choices: Choice$1[];
|
|
7232
7256
|
onChange: (value: string) => void;
|
|
7233
7257
|
selectedValue: string;
|
|
7234
7258
|
}
|
|
7235
|
-
declare class BadgeSelection extends Component<Props$
|
|
7259
|
+
declare class BadgeSelection extends Component<Props$16, SpreadsheetChildEnv> {
|
|
7236
7260
|
static template: string;
|
|
7237
7261
|
static props: {
|
|
7238
7262
|
choices: ArrayConstructor;
|
|
@@ -7390,7 +7414,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7390
7414
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7391
7415
|
}
|
|
7392
7416
|
|
|
7393
|
-
interface Props$
|
|
7417
|
+
interface Props$15 {
|
|
7394
7418
|
currentColor: string | undefined;
|
|
7395
7419
|
toggleColorPicker: () => void;
|
|
7396
7420
|
showColorPicker: boolean;
|
|
@@ -7401,7 +7425,7 @@ interface Props$14 {
|
|
|
7401
7425
|
dropdownMaxHeight?: Pixel;
|
|
7402
7426
|
class?: string;
|
|
7403
7427
|
}
|
|
7404
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7428
|
+
declare class ColorPickerWidget extends Component<Props$15, SpreadsheetChildEnv> {
|
|
7405
7429
|
static template: string;
|
|
7406
7430
|
static props: {
|
|
7407
7431
|
currentColor: {
|
|
@@ -7452,7 +7476,7 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7452
7476
|
};
|
|
7453
7477
|
handle(cmd: Command): void;
|
|
7454
7478
|
open({ col, row }: Position$1, type: CellPopoverType): void;
|
|
7455
|
-
close():
|
|
7479
|
+
close(): "noStateChange" | undefined;
|
|
7456
7480
|
get persistentCellPopover(): OpenCellPopover | ClosedCellPopover;
|
|
7457
7481
|
get isOpen(): boolean;
|
|
7458
7482
|
get cellPopover(): ClosedCellPopover | PositionedCellPopoverComponent;
|
|
@@ -7462,13 +7486,13 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7462
7486
|
interface State$8 {
|
|
7463
7487
|
isOpen: boolean;
|
|
7464
7488
|
}
|
|
7465
|
-
interface Props$
|
|
7489
|
+
interface Props$14 {
|
|
7466
7490
|
currentFontSize: number;
|
|
7467
7491
|
class: string;
|
|
7468
7492
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7469
7493
|
onToggle?: () => void;
|
|
7470
7494
|
}
|
|
7471
|
-
declare class FontSizeEditor extends Component<Props$
|
|
7495
|
+
declare class FontSizeEditor extends Component<Props$14, SpreadsheetChildEnv> {
|
|
7472
7496
|
static template: string;
|
|
7473
7497
|
static props: {
|
|
7474
7498
|
currentFontSize: NumberConstructor;
|
|
@@ -7499,7 +7523,7 @@ declare class FontSizeEditor extends Component<Props$13, SpreadsheetChildEnv> {
|
|
|
7499
7523
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
7500
7524
|
}
|
|
7501
7525
|
|
|
7502
|
-
interface Props$
|
|
7526
|
+
interface Props$13 {
|
|
7503
7527
|
title?: string;
|
|
7504
7528
|
updateTitle: (title: string) => void;
|
|
7505
7529
|
name?: string;
|
|
@@ -7510,7 +7534,7 @@ interface Props$12 {
|
|
|
7510
7534
|
style: TitleDesign;
|
|
7511
7535
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7512
7536
|
}
|
|
7513
|
-
declare class ChartTitle extends Component<Props$
|
|
7537
|
+
declare class ChartTitle extends Component<Props$13, SpreadsheetChildEnv> {
|
|
7514
7538
|
static template: string;
|
|
7515
7539
|
static components: {
|
|
7516
7540
|
Section: typeof Section;
|
|
@@ -7573,13 +7597,13 @@ interface AxisDefinition {
|
|
|
7573
7597
|
id: string;
|
|
7574
7598
|
name: string;
|
|
7575
7599
|
}
|
|
7576
|
-
interface Props$
|
|
7600
|
+
interface Props$12 {
|
|
7577
7601
|
figureId: UID;
|
|
7578
7602
|
definition: ChartWithDataSetDefinition | WaterfallChartDefinition;
|
|
7579
7603
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition | WaterfallChartDefinition>) => DispatchResult;
|
|
7580
7604
|
axesList: AxisDefinition[];
|
|
7581
7605
|
}
|
|
7582
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
7606
|
+
declare class AxisDesignEditor extends Component<Props$12, SpreadsheetChildEnv> {
|
|
7583
7607
|
static template: string;
|
|
7584
7608
|
static components: {
|
|
7585
7609
|
Section: typeof Section;
|
|
@@ -7610,13 +7634,13 @@ declare class AxisDesignEditor extends Component<Props$11, SpreadsheetChildEnv>
|
|
|
7610
7634
|
updateAxisTitle(text: string): void;
|
|
7611
7635
|
}
|
|
7612
7636
|
|
|
7613
|
-
interface Props$
|
|
7637
|
+
interface Props$11 {
|
|
7614
7638
|
currentColor?: string;
|
|
7615
7639
|
onColorPicked: (color: string) => void;
|
|
7616
7640
|
title?: string;
|
|
7617
7641
|
disableNoColor?: boolean;
|
|
7618
7642
|
}
|
|
7619
|
-
declare class RoundColorPicker extends Component<Props$
|
|
7643
|
+
declare class RoundColorPicker extends Component<Props$11, SpreadsheetChildEnv> {
|
|
7620
7644
|
static template: string;
|
|
7621
7645
|
static components: {
|
|
7622
7646
|
Section: typeof Section;
|
|
@@ -7649,13 +7673,13 @@ declare class RoundColorPicker extends Component<Props$10, SpreadsheetChildEnv>
|
|
|
7649
7673
|
get buttonStyle(): string;
|
|
7650
7674
|
}
|
|
7651
7675
|
|
|
7652
|
-
interface Props
|
|
7676
|
+
interface Props$10 {
|
|
7653
7677
|
figureId: UID;
|
|
7654
7678
|
definition: ChartDefinition;
|
|
7655
7679
|
updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
7656
7680
|
defaultChartTitleFontSize?: number;
|
|
7657
7681
|
}
|
|
7658
|
-
declare class GeneralDesignEditor extends Component<Props
|
|
7682
|
+
declare class GeneralDesignEditor extends Component<Props$10, SpreadsheetChildEnv> {
|
|
7659
7683
|
static template: string;
|
|
7660
7684
|
static components: {
|
|
7661
7685
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -7693,12 +7717,12 @@ declare class GeneralDesignEditor extends Component<Props$$, SpreadsheetChildEnv
|
|
|
7693
7717
|
updateChartTitleAlignment(align: "left" | "center" | "right"): void;
|
|
7694
7718
|
}
|
|
7695
7719
|
|
|
7696
|
-
interface Props
|
|
7720
|
+
interface Props$$ {
|
|
7697
7721
|
figureId: UID;
|
|
7698
7722
|
definition: ChartWithDataSetDefinition;
|
|
7699
7723
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7700
7724
|
}
|
|
7701
|
-
declare class ChartLegend extends Component<Props
|
|
7725
|
+
declare class ChartLegend extends Component<Props$$, SpreadsheetChildEnv> {
|
|
7702
7726
|
static template: string;
|
|
7703
7727
|
static components: {
|
|
7704
7728
|
Section: typeof Section;
|
|
@@ -7715,14 +7739,14 @@ interface Choice {
|
|
|
7715
7739
|
value: unknown;
|
|
7716
7740
|
label: string;
|
|
7717
7741
|
}
|
|
7718
|
-
interface Props$
|
|
7742
|
+
interface Props$_ {
|
|
7719
7743
|
choices: Choice[];
|
|
7720
7744
|
onChange: (value: unknown) => void;
|
|
7721
7745
|
selectedValue: string;
|
|
7722
7746
|
name: string;
|
|
7723
7747
|
direction: "horizontal" | "vertical";
|
|
7724
7748
|
}
|
|
7725
|
-
declare class RadioSelection extends Component<Props$
|
|
7749
|
+
declare class RadioSelection extends Component<Props$_, SpreadsheetChildEnv> {
|
|
7726
7750
|
static template: string;
|
|
7727
7751
|
static props: {
|
|
7728
7752
|
choices: ArrayConstructor;
|
|
@@ -7741,13 +7765,13 @@ declare class RadioSelection extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
|
7741
7765
|
};
|
|
7742
7766
|
}
|
|
7743
7767
|
|
|
7744
|
-
interface Props$
|
|
7768
|
+
interface Props$Z {
|
|
7745
7769
|
figureId: UID;
|
|
7746
7770
|
definition: ChartWithDataSetDefinition;
|
|
7747
7771
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7748
7772
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7749
7773
|
}
|
|
7750
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
7774
|
+
declare class SeriesDesignEditor extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
7751
7775
|
static template: string;
|
|
7752
7776
|
static components: {
|
|
7753
7777
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -7775,13 +7799,13 @@ declare class SeriesDesignEditor extends Component<Props$Y, SpreadsheetChildEnv>
|
|
|
7775
7799
|
getDataSeriesLabel(): string | undefined;
|
|
7776
7800
|
}
|
|
7777
7801
|
|
|
7778
|
-
interface Props$
|
|
7802
|
+
interface Props$Y {
|
|
7779
7803
|
figureId: UID;
|
|
7780
7804
|
definition: ChartWithDataSetDefinition;
|
|
7781
7805
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7782
7806
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7783
7807
|
}
|
|
7784
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
7808
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
7785
7809
|
static template: string;
|
|
7786
7810
|
static components: {
|
|
7787
7811
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -7822,13 +7846,13 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$X, SpreadsheetC
|
|
|
7822
7846
|
updateTrendLineValue(index: number, config: any): void;
|
|
7823
7847
|
}
|
|
7824
7848
|
|
|
7825
|
-
interface Props$
|
|
7849
|
+
interface Props$X {
|
|
7826
7850
|
figureId: UID;
|
|
7827
7851
|
definition: ChartWithDataSetDefinition;
|
|
7828
7852
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7829
7853
|
updateChart: (figureId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7830
7854
|
}
|
|
7831
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
7855
|
+
declare class ChartWithAxisDesignPanel<P extends Props$X = Props$X> extends Component<P, SpreadsheetChildEnv> {
|
|
7832
7856
|
static template: string;
|
|
7833
7857
|
static components: {
|
|
7834
7858
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -7848,13 +7872,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$W = Props$W> extends Comp
|
|
|
7848
7872
|
get axesList(): AxisDefinition[];
|
|
7849
7873
|
}
|
|
7850
7874
|
|
|
7851
|
-
interface Props$
|
|
7875
|
+
interface Props$W {
|
|
7852
7876
|
figureId: UID;
|
|
7853
7877
|
definition: GaugeChartDefinition;
|
|
7854
7878
|
canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7855
7879
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7856
7880
|
}
|
|
7857
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
7881
|
+
declare class GaugeChartConfigPanel extends Component<Props$W, SpreadsheetChildEnv> {
|
|
7858
7882
|
static template: string;
|
|
7859
7883
|
static components: {
|
|
7860
7884
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -7918,13 +7942,13 @@ interface EnrichedToken extends Token {
|
|
|
7918
7942
|
isParenthesisLinkedToCursor?: boolean;
|
|
7919
7943
|
}
|
|
7920
7944
|
|
|
7921
|
-
interface Props$
|
|
7945
|
+
interface Props$V {
|
|
7922
7946
|
proposals: AutoCompleteProposal[];
|
|
7923
7947
|
selectedIndex: number | undefined;
|
|
7924
7948
|
onValueSelected: (value: string) => void;
|
|
7925
7949
|
onValueHovered: (index: string) => void;
|
|
7926
7950
|
}
|
|
7927
|
-
declare class TextValueProvider extends Component<Props$
|
|
7951
|
+
declare class TextValueProvider extends Component<Props$V> {
|
|
7928
7952
|
static template: string;
|
|
7929
7953
|
static props: {
|
|
7930
7954
|
proposals: ArrayConstructor;
|
|
@@ -7991,19 +8015,19 @@ declare class ContentEditableHelper {
|
|
|
7991
8015
|
getText(): string;
|
|
7992
8016
|
}
|
|
7993
8017
|
|
|
7994
|
-
interface Props$
|
|
8018
|
+
interface Props$U {
|
|
7995
8019
|
functionName: string;
|
|
7996
8020
|
functionDescription: FunctionDescription;
|
|
7997
8021
|
argToFocus: number;
|
|
7998
8022
|
}
|
|
7999
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
8023
|
+
declare class FunctionDescriptionProvider extends Component<Props$U, SpreadsheetChildEnv> {
|
|
8000
8024
|
static template: string;
|
|
8001
8025
|
static props: {
|
|
8002
8026
|
functionName: StringConstructor;
|
|
8003
8027
|
functionDescription: ObjectConstructor;
|
|
8004
8028
|
argToFocus: NumberConstructor;
|
|
8005
8029
|
};
|
|
8006
|
-
getContext(): Props$
|
|
8030
|
+
getContext(): Props$U;
|
|
8007
8031
|
get formulaArgSeparator(): string;
|
|
8008
8032
|
}
|
|
8009
8033
|
|
|
@@ -8407,7 +8431,7 @@ declare class MenuItemRegistry extends Registry<ActionSpec> {
|
|
|
8407
8431
|
getMenuItems(): Action[];
|
|
8408
8432
|
}
|
|
8409
8433
|
|
|
8410
|
-
interface Props$
|
|
8434
|
+
interface Props$T {
|
|
8411
8435
|
onConfirm: (content: string) => void;
|
|
8412
8436
|
composerContent: string;
|
|
8413
8437
|
defaultRangeSheetId: UID;
|
|
@@ -8419,7 +8443,7 @@ interface Props$S {
|
|
|
8419
8443
|
invalid?: boolean;
|
|
8420
8444
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
8421
8445
|
}
|
|
8422
|
-
declare class StandaloneComposer extends Component<Props$
|
|
8446
|
+
declare class StandaloneComposer extends Component<Props$T, SpreadsheetChildEnv> {
|
|
8423
8447
|
static template: string;
|
|
8424
8448
|
static props: {
|
|
8425
8449
|
composerContent: {
|
|
@@ -8482,13 +8506,13 @@ interface PanelState {
|
|
|
8482
8506
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
8483
8507
|
sectionRule: SectionRule;
|
|
8484
8508
|
}
|
|
8485
|
-
interface Props$
|
|
8509
|
+
interface Props$S {
|
|
8486
8510
|
figureId: UID;
|
|
8487
8511
|
definition: GaugeChartDefinition;
|
|
8488
8512
|
canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8489
8513
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8490
8514
|
}
|
|
8491
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
8515
|
+
declare class GaugeChartDesignPanel extends Component<Props$S, SpreadsheetChildEnv> {
|
|
8492
8516
|
static template: string;
|
|
8493
8517
|
static components: {
|
|
8494
8518
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8538,13 +8562,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
8538
8562
|
onUpdateCumulative(cumulative: boolean): void;
|
|
8539
8563
|
}
|
|
8540
8564
|
|
|
8541
|
-
interface Props$
|
|
8565
|
+
interface Props$R {
|
|
8542
8566
|
figureId: UID;
|
|
8543
8567
|
definition: ScorecardChartDefinition;
|
|
8544
8568
|
canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8545
8569
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8546
8570
|
}
|
|
8547
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
8571
|
+
declare class ScorecardChartConfigPanel extends Component<Props$R, SpreadsheetChildEnv> {
|
|
8548
8572
|
static template: string;
|
|
8549
8573
|
static components: {
|
|
8550
8574
|
SelectionInput: typeof SelectionInput;
|
|
@@ -8573,13 +8597,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$Q, SpreadsheetCh
|
|
|
8573
8597
|
}
|
|
8574
8598
|
|
|
8575
8599
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
8576
|
-
interface Props$
|
|
8600
|
+
interface Props$Q {
|
|
8577
8601
|
figureId: UID;
|
|
8578
8602
|
definition: ScorecardChartDefinition;
|
|
8579
8603
|
canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8580
8604
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8581
8605
|
}
|
|
8582
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
8606
|
+
declare class ScorecardChartDesignPanel extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
8583
8607
|
static template: string;
|
|
8584
8608
|
static components: {
|
|
8585
8609
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8670,18 +8694,18 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
8670
8694
|
activeComposer: ComposerInterface;
|
|
8671
8695
|
private _focusMode;
|
|
8672
8696
|
get focusMode(): ComposerFocusType;
|
|
8673
|
-
focusComposer(listener: ComposerInterface, args: Args):
|
|
8674
|
-
focusActiveComposer(args: Args):
|
|
8697
|
+
focusComposer(listener: ComposerInterface, args: Args): "noStateChange" | undefined;
|
|
8698
|
+
focusActiveComposer(args: Args): "noStateChange" | undefined;
|
|
8675
8699
|
/**
|
|
8676
8700
|
* Start the edition or update the content if it's already started.
|
|
8677
8701
|
*/
|
|
8678
8702
|
private setComposerContent;
|
|
8679
8703
|
}
|
|
8680
8704
|
|
|
8681
|
-
interface Props$
|
|
8705
|
+
interface Props$P {
|
|
8682
8706
|
figure: Figure;
|
|
8683
8707
|
}
|
|
8684
|
-
declare class ChartJsComponent extends Component<Props$
|
|
8708
|
+
declare class ChartJsComponent extends Component<Props$P, SpreadsheetChildEnv> {
|
|
8685
8709
|
static template: string;
|
|
8686
8710
|
static props: {
|
|
8687
8711
|
figure: ObjectConstructor;
|
|
@@ -8698,10 +8722,10 @@ declare class ChartJsComponent extends Component<Props$O, SpreadsheetChildEnv> {
|
|
|
8698
8722
|
private updateChartJs;
|
|
8699
8723
|
}
|
|
8700
8724
|
|
|
8701
|
-
interface Props$
|
|
8725
|
+
interface Props$O {
|
|
8702
8726
|
figure: Figure;
|
|
8703
8727
|
}
|
|
8704
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
8728
|
+
declare class ScorecardChart$1 extends Component<Props$O, SpreadsheetChildEnv> {
|
|
8705
8729
|
static template: string;
|
|
8706
8730
|
static props: {
|
|
8707
8731
|
figure: ObjectConstructor;
|
|
@@ -8714,7 +8738,7 @@ declare class ScorecardChart$1 extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
8714
8738
|
}
|
|
8715
8739
|
|
|
8716
8740
|
type MenuItemOrSeparator = Action | "separator";
|
|
8717
|
-
interface Props$
|
|
8741
|
+
interface Props$N {
|
|
8718
8742
|
position: DOMCoordinates;
|
|
8719
8743
|
menuItems: Action[];
|
|
8720
8744
|
depth: number;
|
|
@@ -8733,7 +8757,7 @@ interface MenuState {
|
|
|
8733
8757
|
menuItems: Action[];
|
|
8734
8758
|
isHoveringChild?: boolean;
|
|
8735
8759
|
}
|
|
8736
|
-
declare class Menu extends Component<Props$
|
|
8760
|
+
declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
|
|
8737
8761
|
static template: string;
|
|
8738
8762
|
static props: {
|
|
8739
8763
|
position: ObjectConstructor;
|
|
@@ -8809,14 +8833,14 @@ declare class Menu extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
8809
8833
|
}
|
|
8810
8834
|
|
|
8811
8835
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
8812
|
-
interface Props$
|
|
8836
|
+
interface Props$M {
|
|
8813
8837
|
figure: Figure;
|
|
8814
8838
|
style: string;
|
|
8815
8839
|
onFigureDeleted: () => void;
|
|
8816
8840
|
onMouseDown: (ev: MouseEvent) => void;
|
|
8817
8841
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
8818
8842
|
}
|
|
8819
|
-
declare class FigureComponent extends Component<Props$
|
|
8843
|
+
declare class FigureComponent extends Component<Props$M, SpreadsheetChildEnv> {
|
|
8820
8844
|
static template: string;
|
|
8821
8845
|
static props: {
|
|
8822
8846
|
figure: ObjectConstructor;
|
|
@@ -8865,11 +8889,11 @@ declare class FigureComponent extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
8865
8889
|
private openContextMenu;
|
|
8866
8890
|
}
|
|
8867
8891
|
|
|
8868
|
-
interface Props$
|
|
8892
|
+
interface Props$L {
|
|
8869
8893
|
figure: Figure;
|
|
8870
8894
|
onFigureDeleted: () => void;
|
|
8871
8895
|
}
|
|
8872
|
-
declare class ChartFigure extends Component<Props$
|
|
8896
|
+
declare class ChartFigure extends Component<Props$L, SpreadsheetChildEnv> {
|
|
8873
8897
|
static template: string;
|
|
8874
8898
|
static props: {
|
|
8875
8899
|
figure: ObjectConstructor;
|
|
@@ -8881,7 +8905,7 @@ declare class ChartFigure extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
8881
8905
|
get chartComponent(): new (...args: any) => Component;
|
|
8882
8906
|
}
|
|
8883
8907
|
|
|
8884
|
-
interface Props$
|
|
8908
|
+
interface Props$K {
|
|
8885
8909
|
isVisible: boolean;
|
|
8886
8910
|
position: Position;
|
|
8887
8911
|
}
|
|
@@ -8893,7 +8917,7 @@ interface State$7 {
|
|
|
8893
8917
|
position: Position;
|
|
8894
8918
|
handler: boolean;
|
|
8895
8919
|
}
|
|
8896
|
-
declare class Autofill extends Component<Props$
|
|
8920
|
+
declare class Autofill extends Component<Props$K, SpreadsheetChildEnv> {
|
|
8897
8921
|
static template: string;
|
|
8898
8922
|
static props: {
|
|
8899
8923
|
position: ObjectConstructor;
|
|
@@ -8927,7 +8951,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
8927
8951
|
get tagStyle(): string;
|
|
8928
8952
|
}
|
|
8929
8953
|
|
|
8930
|
-
interface Props$
|
|
8954
|
+
interface Props$J {
|
|
8931
8955
|
gridDims: DOMDimension;
|
|
8932
8956
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
8933
8957
|
}
|
|
@@ -8935,7 +8959,7 @@ interface Props$I {
|
|
|
8935
8959
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
8936
8960
|
* It also applies the style of the cell to the composer input.
|
|
8937
8961
|
*/
|
|
8938
|
-
declare class GridComposer extends Component<Props$
|
|
8962
|
+
declare class GridComposer extends Component<Props$J, SpreadsheetChildEnv> {
|
|
8939
8963
|
static template: string;
|
|
8940
8964
|
static props: {
|
|
8941
8965
|
gridDims: ObjectConstructor;
|
|
@@ -8993,10 +9017,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
|
|
|
8993
9017
|
isPositionVisible(position: CellPosition): boolean;
|
|
8994
9018
|
}
|
|
8995
9019
|
|
|
8996
|
-
interface Props$
|
|
9020
|
+
interface Props$I {
|
|
8997
9021
|
cellPosition: CellPosition;
|
|
8998
9022
|
}
|
|
8999
|
-
declare class DataValidationCheckbox extends Component<Props$
|
|
9023
|
+
declare class DataValidationCheckbox extends Component<Props$I, SpreadsheetChildEnv> {
|
|
9000
9024
|
static template: string;
|
|
9001
9025
|
static components: {
|
|
9002
9026
|
Checkbox: typeof Checkbox;
|
|
@@ -9009,10 +9033,10 @@ declare class DataValidationCheckbox extends Component<Props$H, SpreadsheetChild
|
|
|
9009
9033
|
get isDisabled(): boolean;
|
|
9010
9034
|
}
|
|
9011
9035
|
|
|
9012
|
-
interface Props$
|
|
9036
|
+
interface Props$H {
|
|
9013
9037
|
cellPosition: CellPosition;
|
|
9014
9038
|
}
|
|
9015
|
-
declare class DataValidationListIcon extends Component<Props$
|
|
9039
|
+
declare class DataValidationListIcon extends Component<Props$H, SpreadsheetChildEnv> {
|
|
9016
9040
|
static template: string;
|
|
9017
9041
|
static props: {
|
|
9018
9042
|
cellPosition: ObjectConstructor;
|
|
@@ -9042,7 +9066,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9042
9066
|
}
|
|
9043
9067
|
|
|
9044
9068
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9045
|
-
interface Props$
|
|
9069
|
+
interface Props$G {
|
|
9046
9070
|
onFigureDeleted: () => void;
|
|
9047
9071
|
}
|
|
9048
9072
|
interface Container {
|
|
@@ -9122,7 +9146,7 @@ interface DndState {
|
|
|
9122
9146
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
9123
9147
|
*
|
|
9124
9148
|
*/
|
|
9125
|
-
declare class FiguresContainer extends Component<Props$
|
|
9149
|
+
declare class FiguresContainer extends Component<Props$G, SpreadsheetChildEnv> {
|
|
9126
9150
|
static template: string;
|
|
9127
9151
|
static props: {
|
|
9128
9152
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -9157,10 +9181,10 @@ declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
|
|
|
9157
9181
|
private getSnapLineStyle;
|
|
9158
9182
|
}
|
|
9159
9183
|
|
|
9160
|
-
interface Props$
|
|
9184
|
+
interface Props$F {
|
|
9161
9185
|
cellPosition: CellPosition;
|
|
9162
9186
|
}
|
|
9163
|
-
declare class FilterIcon extends Component<Props$
|
|
9187
|
+
declare class FilterIcon extends Component<Props$F, SpreadsheetChildEnv> {
|
|
9164
9188
|
static template: string;
|
|
9165
9189
|
static props: {
|
|
9166
9190
|
cellPosition: ObjectConstructor;
|
|
@@ -9182,10 +9206,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
|
|
|
9182
9206
|
getFilterHeadersPositions(): CellPosition[];
|
|
9183
9207
|
}
|
|
9184
9208
|
|
|
9185
|
-
interface Props$
|
|
9209
|
+
interface Props$E {
|
|
9186
9210
|
focusGrid: () => void;
|
|
9187
9211
|
}
|
|
9188
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
9212
|
+
declare class GridAddRowsFooter extends Component<Props$E, SpreadsheetChildEnv> {
|
|
9189
9213
|
static template: string;
|
|
9190
9214
|
static props: {
|
|
9191
9215
|
focusGrid: FunctionConstructor;
|
|
@@ -9209,7 +9233,7 @@ declare class GridAddRowsFooter extends Component<Props$D, SpreadsheetChildEnv>
|
|
|
9209
9233
|
private onExternalClick;
|
|
9210
9234
|
}
|
|
9211
9235
|
|
|
9212
|
-
interface Props$
|
|
9236
|
+
interface Props$D {
|
|
9213
9237
|
onCellHovered: (position: Partial<Position$1>) => void;
|
|
9214
9238
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
9215
9239
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers) => void;
|
|
@@ -9219,7 +9243,7 @@ interface Props$C {
|
|
|
9219
9243
|
gridOverlayDimensions: string;
|
|
9220
9244
|
onFigureDeleted: () => void;
|
|
9221
9245
|
}
|
|
9222
|
-
declare class GridOverlay extends Component<Props$
|
|
9246
|
+
declare class GridOverlay extends Component<Props$D, SpreadsheetChildEnv> {
|
|
9223
9247
|
static template: string;
|
|
9224
9248
|
static props: {
|
|
9225
9249
|
onCellHovered: {
|
|
@@ -9277,12 +9301,12 @@ declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
|
|
|
9277
9301
|
private getCartesianCoordinates;
|
|
9278
9302
|
}
|
|
9279
9303
|
|
|
9280
|
-
interface Props$
|
|
9304
|
+
interface Props$C {
|
|
9281
9305
|
gridRect: Rect;
|
|
9282
9306
|
onClosePopover: () => void;
|
|
9283
9307
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
9284
9308
|
}
|
|
9285
|
-
declare class GridPopover extends Component<Props$
|
|
9309
|
+
declare class GridPopover extends Component<Props$C, SpreadsheetChildEnv> {
|
|
9286
9310
|
static template: string;
|
|
9287
9311
|
static props: {
|
|
9288
9312
|
onClosePopover: FunctionConstructor;
|
|
@@ -9298,7 +9322,7 @@ declare class GridPopover extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
9298
9322
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
9299
9323
|
}
|
|
9300
9324
|
|
|
9301
|
-
interface Props$
|
|
9325
|
+
interface Props$B {
|
|
9302
9326
|
headersGroups: ConsecutiveIndexes[];
|
|
9303
9327
|
offset: number;
|
|
9304
9328
|
headerRange: {
|
|
@@ -9306,7 +9330,7 @@ interface Props$A {
|
|
|
9306
9330
|
end: HeaderIndex;
|
|
9307
9331
|
};
|
|
9308
9332
|
}
|
|
9309
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
9333
|
+
declare class UnhideRowHeaders extends Component<Props$B, SpreadsheetChildEnv> {
|
|
9310
9334
|
static template: string;
|
|
9311
9335
|
static props: {
|
|
9312
9336
|
headersGroups: ArrayConstructor;
|
|
@@ -9325,7 +9349,7 @@ declare class UnhideRowHeaders extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
9325
9349
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
9326
9350
|
isVisible(header: HeaderIndex): boolean;
|
|
9327
9351
|
}
|
|
9328
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
9352
|
+
declare class UnhideColumnHeaders extends Component<Props$B, SpreadsheetChildEnv> {
|
|
9329
9353
|
static template: string;
|
|
9330
9354
|
static props: {
|
|
9331
9355
|
headersGroups: ArrayConstructor;
|
|
@@ -9511,13 +9535,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
9511
9535
|
}
|
|
9512
9536
|
|
|
9513
9537
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
9514
|
-
interface Props$
|
|
9538
|
+
interface Props$A {
|
|
9515
9539
|
zone: Zone;
|
|
9516
9540
|
orientation: Orientation$1;
|
|
9517
9541
|
isMoving: boolean;
|
|
9518
9542
|
onMoveHighlight: (x: Pixel, y: Pixel) => void;
|
|
9519
9543
|
}
|
|
9520
|
-
declare class Border extends Component<Props$
|
|
9544
|
+
declare class Border extends Component<Props$A, SpreadsheetChildEnv> {
|
|
9521
9545
|
static template: string;
|
|
9522
9546
|
static props: {
|
|
9523
9547
|
zone: ObjectConstructor;
|
|
@@ -9530,14 +9554,14 @@ declare class Border extends Component<Props$z, SpreadsheetChildEnv> {
|
|
|
9530
9554
|
}
|
|
9531
9555
|
|
|
9532
9556
|
type Orientation = "nw" | "ne" | "sw" | "se";
|
|
9533
|
-
interface Props$
|
|
9557
|
+
interface Props$z {
|
|
9534
9558
|
zone: Zone;
|
|
9535
9559
|
color: Color;
|
|
9536
9560
|
orientation: Orientation;
|
|
9537
9561
|
isResizing: boolean;
|
|
9538
9562
|
onResizeHighlight: (isLeft: boolean, isRight: boolean) => void;
|
|
9539
9563
|
}
|
|
9540
|
-
declare class Corner extends Component<Props$
|
|
9564
|
+
declare class Corner extends Component<Props$z, SpreadsheetChildEnv> {
|
|
9541
9565
|
static template: string;
|
|
9542
9566
|
static props: {
|
|
9543
9567
|
zone: ObjectConstructor;
|
|
@@ -9552,14 +9576,14 @@ declare class Corner extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
9552
9576
|
onMouseDown(ev: MouseEvent): void;
|
|
9553
9577
|
}
|
|
9554
9578
|
|
|
9555
|
-
interface Props$
|
|
9579
|
+
interface Props$y {
|
|
9556
9580
|
zone: Zone;
|
|
9557
9581
|
color: Color;
|
|
9558
9582
|
}
|
|
9559
9583
|
interface HighlightState {
|
|
9560
9584
|
shiftingMode: "isMoving" | "isResizing" | "none";
|
|
9561
9585
|
}
|
|
9562
|
-
declare class Highlight extends Component<Props$
|
|
9586
|
+
declare class Highlight extends Component<Props$y, SpreadsheetChildEnv> {
|
|
9563
9587
|
static template: string;
|
|
9564
9588
|
static props: {
|
|
9565
9589
|
zone: ObjectConstructor;
|
|
@@ -9576,7 +9600,7 @@ declare class Highlight extends Component<Props$x, SpreadsheetChildEnv> {
|
|
|
9576
9600
|
|
|
9577
9601
|
type ScrollDirection = "horizontal" | "vertical";
|
|
9578
9602
|
|
|
9579
|
-
interface Props$
|
|
9603
|
+
interface Props$x {
|
|
9580
9604
|
width: Pixel;
|
|
9581
9605
|
height: Pixel;
|
|
9582
9606
|
direction: ScrollDirection;
|
|
@@ -9584,7 +9608,7 @@ interface Props$w {
|
|
|
9584
9608
|
offset: Pixel;
|
|
9585
9609
|
onScroll: (offset: Pixel) => void;
|
|
9586
9610
|
}
|
|
9587
|
-
declare class ScrollBar extends Component<Props$
|
|
9611
|
+
declare class ScrollBar extends Component<Props$x> {
|
|
9588
9612
|
static props: {
|
|
9589
9613
|
width: {
|
|
9590
9614
|
type: NumberConstructor;
|
|
@@ -9612,10 +9636,10 @@ declare class ScrollBar extends Component<Props$w> {
|
|
|
9612
9636
|
onScroll(ev: any): void;
|
|
9613
9637
|
}
|
|
9614
9638
|
|
|
9615
|
-
interface Props$
|
|
9639
|
+
interface Props$w {
|
|
9616
9640
|
leftOffset: number;
|
|
9617
9641
|
}
|
|
9618
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
9642
|
+
declare class HorizontalScrollBar extends Component<Props$w, SpreadsheetChildEnv> {
|
|
9619
9643
|
static props: {
|
|
9620
9644
|
leftOffset: {
|
|
9621
9645
|
type: NumberConstructor;
|
|
@@ -9641,10 +9665,10 @@ declare class HorizontalScrollBar extends Component<Props$v, SpreadsheetChildEnv
|
|
|
9641
9665
|
onScroll(offset: any): void;
|
|
9642
9666
|
}
|
|
9643
9667
|
|
|
9644
|
-
interface Props$
|
|
9668
|
+
interface Props$v {
|
|
9645
9669
|
topOffset: number;
|
|
9646
9670
|
}
|
|
9647
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
9671
|
+
declare class VerticalScrollBar extends Component<Props$v, SpreadsheetChildEnv> {
|
|
9648
9672
|
static props: {
|
|
9649
9673
|
topOffset: {
|
|
9650
9674
|
type: NumberConstructor;
|
|
@@ -9670,13 +9694,13 @@ declare class VerticalScrollBar extends Component<Props$u, SpreadsheetChildEnv>
|
|
|
9670
9694
|
onScroll(offset: any): void;
|
|
9671
9695
|
}
|
|
9672
9696
|
|
|
9673
|
-
interface Props$
|
|
9697
|
+
interface Props$u {
|
|
9674
9698
|
table: Table;
|
|
9675
9699
|
}
|
|
9676
9700
|
interface State$6 {
|
|
9677
9701
|
highlightZone: Zone | undefined;
|
|
9678
9702
|
}
|
|
9679
|
-
declare class TableResizer extends Component<Props$
|
|
9703
|
+
declare class TableResizer extends Component<Props$u, SpreadsheetChildEnv> {
|
|
9680
9704
|
static template: string;
|
|
9681
9705
|
static props: {
|
|
9682
9706
|
table: ObjectConstructor;
|
|
@@ -9693,8 +9717,8 @@ declare class HoveredCellStore extends SpreadsheetStore {
|
|
|
9693
9717
|
col: number | undefined;
|
|
9694
9718
|
row: number | undefined;
|
|
9695
9719
|
handle(cmd: Command): void;
|
|
9696
|
-
hover(position: Position$1):
|
|
9697
|
-
clear():
|
|
9720
|
+
hover(position: Position$1): "noStateChange" | undefined;
|
|
9721
|
+
clear(): "noStateChange" | undefined;
|
|
9698
9722
|
}
|
|
9699
9723
|
|
|
9700
9724
|
/**
|
|
@@ -9708,10 +9732,10 @@ declare class HoveredCellStore extends SpreadsheetStore {
|
|
|
9708
9732
|
* - a vertical resizer (same, for rows)
|
|
9709
9733
|
*/
|
|
9710
9734
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
9711
|
-
interface Props$
|
|
9735
|
+
interface Props$t {
|
|
9712
9736
|
exposeFocus: (focus: () => void) => void;
|
|
9713
9737
|
}
|
|
9714
|
-
declare class Grid extends Component<Props$
|
|
9738
|
+
declare class Grid extends Component<Props$t, SpreadsheetChildEnv> {
|
|
9715
9739
|
static template: string;
|
|
9716
9740
|
static props: {
|
|
9717
9741
|
exposeFocus: FunctionConstructor;
|
|
@@ -9820,7 +9844,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
9820
9844
|
private getChartDefinitionFromContextCreation;
|
|
9821
9845
|
}
|
|
9822
9846
|
|
|
9823
|
-
interface Props$
|
|
9847
|
+
interface Props$s {
|
|
9824
9848
|
figureId: UID;
|
|
9825
9849
|
chartPanelStore: MainChartPanelStore;
|
|
9826
9850
|
}
|
|
@@ -9828,7 +9852,7 @@ interface ChartTypePickerState {
|
|
|
9828
9852
|
popoverProps: PopoverProps | undefined;
|
|
9829
9853
|
popoverStyle: string;
|
|
9830
9854
|
}
|
|
9831
|
-
declare class ChartTypePicker extends Component<Props$
|
|
9855
|
+
declare class ChartTypePicker extends Component<Props$s, SpreadsheetChildEnv> {
|
|
9832
9856
|
static template: string;
|
|
9833
9857
|
static components: {
|
|
9834
9858
|
Section: typeof Section;
|
|
@@ -9863,11 +9887,11 @@ declare class ChartTypePicker extends Component<Props$r, SpreadsheetChildEnv> {
|
|
|
9863
9887
|
private closePopover;
|
|
9864
9888
|
}
|
|
9865
9889
|
|
|
9866
|
-
interface Props$
|
|
9890
|
+
interface Props$r {
|
|
9867
9891
|
onCloseSidePanel: () => void;
|
|
9868
9892
|
figureId: UID;
|
|
9869
9893
|
}
|
|
9870
|
-
declare class ChartPanel extends Component<Props$
|
|
9894
|
+
declare class ChartPanel extends Component<Props$r, SpreadsheetChildEnv> {
|
|
9871
9895
|
static template: string;
|
|
9872
9896
|
static components: {
|
|
9873
9897
|
Section: typeof Section;
|
|
@@ -9887,13 +9911,13 @@ declare class ChartPanel extends Component<Props$q, SpreadsheetChildEnv> {
|
|
|
9887
9911
|
private getChartDefinition;
|
|
9888
9912
|
}
|
|
9889
9913
|
|
|
9890
|
-
interface Props$
|
|
9914
|
+
interface Props$q {
|
|
9891
9915
|
figureId: UID;
|
|
9892
9916
|
definition: PieChartDefinition;
|
|
9893
9917
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
9894
9918
|
updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
9895
9919
|
}
|
|
9896
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
9920
|
+
declare class PieChartDesignPanel extends Component<Props$q, SpreadsheetChildEnv> {
|
|
9897
9921
|
static template: string;
|
|
9898
9922
|
static components: {
|
|
9899
9923
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -9912,10 +9936,10 @@ declare class PieChartDesignPanel extends Component<Props$p, SpreadsheetChildEnv
|
|
|
9912
9936
|
};
|
|
9913
9937
|
}
|
|
9914
9938
|
|
|
9915
|
-
interface Props$
|
|
9939
|
+
interface Props$p {
|
|
9916
9940
|
items: ActionSpec[];
|
|
9917
9941
|
}
|
|
9918
|
-
declare class CogWheelMenu extends Component<Props$
|
|
9942
|
+
declare class CogWheelMenu extends Component<Props$p, SpreadsheetChildEnv> {
|
|
9919
9943
|
static template: string;
|
|
9920
9944
|
static components: {
|
|
9921
9945
|
Menu: typeof Menu;
|
|
@@ -9998,14 +10022,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9998
10022
|
get highlights(): Highlight$1[];
|
|
9999
10023
|
}
|
|
10000
10024
|
|
|
10001
|
-
interface Props$
|
|
10025
|
+
interface Props$o {
|
|
10002
10026
|
deferUpdate: boolean;
|
|
10003
10027
|
isDirty: boolean;
|
|
10004
10028
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10005
10029
|
discard: () => void;
|
|
10006
10030
|
apply: () => void;
|
|
10007
10031
|
}
|
|
10008
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10032
|
+
declare class PivotDeferUpdate extends Component<Props$o, SpreadsheetChildEnv> {
|
|
10009
10033
|
static template: string;
|
|
10010
10034
|
static props: {
|
|
10011
10035
|
deferUpdate: BooleanConstructor;
|
|
@@ -10022,11 +10046,11 @@ declare class PivotDeferUpdate extends Component<Props$n, SpreadsheetChildEnv> {
|
|
|
10022
10046
|
get deferUpdatesTooltip(): string;
|
|
10023
10047
|
}
|
|
10024
10048
|
|
|
10025
|
-
interface Props$
|
|
10049
|
+
interface Props$n {
|
|
10026
10050
|
onFieldPicked: (field: string) => void;
|
|
10027
10051
|
fields: PivotField[];
|
|
10028
10052
|
}
|
|
10029
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10053
|
+
declare class AddDimensionButton extends Component<Props$n, SpreadsheetChildEnv> {
|
|
10030
10054
|
static template: string;
|
|
10031
10055
|
static components: {
|
|
10032
10056
|
Popover: typeof Popover;
|
|
@@ -10062,14 +10086,14 @@ declare class AddDimensionButton extends Component<Props$m, SpreadsheetChildEnv>
|
|
|
10062
10086
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10063
10087
|
}
|
|
10064
10088
|
|
|
10065
|
-
interface Props$
|
|
10089
|
+
interface Props$m {
|
|
10066
10090
|
value: string;
|
|
10067
10091
|
onChange: (value: string) => void;
|
|
10068
10092
|
class?: string;
|
|
10069
10093
|
id?: string;
|
|
10070
10094
|
placeholder?: string;
|
|
10071
10095
|
}
|
|
10072
|
-
declare class TextInput extends Component<Props$
|
|
10096
|
+
declare class TextInput extends Component<Props$m, SpreadsheetChildEnv> {
|
|
10073
10097
|
static template: string;
|
|
10074
10098
|
static props: {
|
|
10075
10099
|
value: StringConstructor;
|
|
@@ -10095,13 +10119,13 @@ declare class TextInput extends Component<Props$l, SpreadsheetChildEnv> {
|
|
|
10095
10119
|
onMouseUp(ev: MouseEvent): void;
|
|
10096
10120
|
}
|
|
10097
10121
|
|
|
10098
|
-
interface Props$
|
|
10122
|
+
interface Props$l {
|
|
10099
10123
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10100
10124
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10101
10125
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10102
10126
|
type: "row" | "col" | "measure";
|
|
10103
10127
|
}
|
|
10104
|
-
declare class PivotDimension extends Component<Props$
|
|
10128
|
+
declare class PivotDimension extends Component<Props$l, SpreadsheetChildEnv> {
|
|
10105
10129
|
static template: string;
|
|
10106
10130
|
static props: {
|
|
10107
10131
|
dimension: ObjectConstructor;
|
|
@@ -10125,13 +10149,13 @@ declare class PivotDimension extends Component<Props$k, SpreadsheetChildEnv> {
|
|
|
10125
10149
|
updateName(name: string): void;
|
|
10126
10150
|
}
|
|
10127
10151
|
|
|
10128
|
-
interface Props$
|
|
10152
|
+
interface Props$k {
|
|
10129
10153
|
dimension: PivotDimension$1;
|
|
10130
10154
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10131
10155
|
availableGranularities: Set<string>;
|
|
10132
10156
|
allGranularities: string[];
|
|
10133
10157
|
}
|
|
10134
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
10158
|
+
declare class PivotDimensionGranularity extends Component<Props$k, SpreadsheetChildEnv> {
|
|
10135
10159
|
static template: string;
|
|
10136
10160
|
static props: {
|
|
10137
10161
|
dimension: ObjectConstructor;
|
|
@@ -10156,11 +10180,11 @@ declare class PivotDimensionGranularity extends Component<Props$j, SpreadsheetCh
|
|
|
10156
10180
|
};
|
|
10157
10181
|
}
|
|
10158
10182
|
|
|
10159
|
-
interface Props$
|
|
10183
|
+
interface Props$j {
|
|
10160
10184
|
dimension: PivotDimension$1;
|
|
10161
10185
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10162
10186
|
}
|
|
10163
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
10187
|
+
declare class PivotDimensionOrder extends Component<Props$j, SpreadsheetChildEnv> {
|
|
10164
10188
|
static template: string;
|
|
10165
10189
|
static props: {
|
|
10166
10190
|
dimension: ObjectConstructor;
|
|
@@ -10195,7 +10219,7 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
|
|
|
10195
10219
|
*/
|
|
10196
10220
|
declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: any): CellValue;
|
|
10197
10221
|
|
|
10198
|
-
interface Props$
|
|
10222
|
+
interface Props$i {
|
|
10199
10223
|
pivotId: string;
|
|
10200
10224
|
definition: PivotRuntimeDefinition;
|
|
10201
10225
|
measure: PivotMeasure;
|
|
@@ -10203,7 +10227,7 @@ interface Props$h {
|
|
|
10203
10227
|
onRemoved: () => void;
|
|
10204
10228
|
generateMeasureId: (fieldName: string, aggregator?: string) => string;
|
|
10205
10229
|
}
|
|
10206
|
-
declare class PivotMeasureEditor extends Component<Props$
|
|
10230
|
+
declare class PivotMeasureEditor extends Component<Props$i> {
|
|
10207
10231
|
static template: string;
|
|
10208
10232
|
static components: {
|
|
10209
10233
|
PivotDimension: typeof PivotDimension;
|
|
@@ -10225,13 +10249,14 @@ declare class PivotMeasureEditor extends Component<Props$h> {
|
|
|
10225
10249
|
toggleMeasureVisibility(): void;
|
|
10226
10250
|
openShowValuesAs(): void;
|
|
10227
10251
|
getColoredSymbolToken(token: Token): Color | undefined;
|
|
10252
|
+
get isCalculatedMeasureInvalid(): boolean;
|
|
10228
10253
|
}
|
|
10229
10254
|
|
|
10230
|
-
interface Props$
|
|
10255
|
+
interface Props$h {
|
|
10231
10256
|
definition: PivotRuntimeDefinition;
|
|
10232
10257
|
pivotId: UID;
|
|
10233
10258
|
}
|
|
10234
|
-
declare class PivotSortSection extends Component<Props$
|
|
10259
|
+
declare class PivotSortSection extends Component<Props$h, SpreadsheetChildEnv> {
|
|
10235
10260
|
static template: string;
|
|
10236
10261
|
static components: {
|
|
10237
10262
|
Section: typeof Section;
|
|
@@ -10248,7 +10273,7 @@ declare class PivotSortSection extends Component<Props$g, SpreadsheetChildEnv> {
|
|
|
10248
10273
|
}[];
|
|
10249
10274
|
}
|
|
10250
10275
|
|
|
10251
|
-
interface Props$
|
|
10276
|
+
interface Props$g {
|
|
10252
10277
|
definition: PivotRuntimeDefinition;
|
|
10253
10278
|
onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
10254
10279
|
unusedGroupableFields: PivotField[];
|
|
@@ -10259,7 +10284,7 @@ interface Props$f {
|
|
|
10259
10284
|
getScrollableContainerEl?: () => HTMLElement;
|
|
10260
10285
|
pivotId: UID;
|
|
10261
10286
|
}
|
|
10262
|
-
declare class PivotLayoutConfigurator extends Component<Props$
|
|
10287
|
+
declare class PivotLayoutConfigurator extends Component<Props$g, SpreadsheetChildEnv> {
|
|
10263
10288
|
static template: string;
|
|
10264
10289
|
static components: {
|
|
10265
10290
|
AddDimensionButton: typeof AddDimensionButton;
|
|
@@ -10349,11 +10374,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
10349
10374
|
private shouldKeepSortedColumn;
|
|
10350
10375
|
}
|
|
10351
10376
|
|
|
10352
|
-
interface Props$
|
|
10377
|
+
interface Props$f {
|
|
10353
10378
|
pivotId: UID;
|
|
10354
10379
|
flipAxis: () => void;
|
|
10355
10380
|
}
|
|
10356
|
-
declare class PivotTitleSection extends Component<Props$
|
|
10381
|
+
declare class PivotTitleSection extends Component<Props$f, SpreadsheetChildEnv> {
|
|
10357
10382
|
static template: string;
|
|
10358
10383
|
static components: {
|
|
10359
10384
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -10437,6 +10462,90 @@ declare function getFirstPivotFunction(tokens: Token[]): {
|
|
|
10437
10462
|
*/
|
|
10438
10463
|
declare function getNumberOfPivotFunctions(tokens: Token[]): number;
|
|
10439
10464
|
|
|
10465
|
+
interface PivotDialogColumn {
|
|
10466
|
+
formula: string;
|
|
10467
|
+
value: string;
|
|
10468
|
+
isMissing: boolean;
|
|
10469
|
+
style?: string;
|
|
10470
|
+
span: number;
|
|
10471
|
+
}
|
|
10472
|
+
interface PivotDialogRow {
|
|
10473
|
+
formula: string;
|
|
10474
|
+
value: string;
|
|
10475
|
+
isMissing: boolean;
|
|
10476
|
+
style?: string;
|
|
10477
|
+
}
|
|
10478
|
+
interface PivotDialogValue {
|
|
10479
|
+
formula: string;
|
|
10480
|
+
value: string;
|
|
10481
|
+
isMissing: boolean;
|
|
10482
|
+
}
|
|
10483
|
+
interface Props$e {
|
|
10484
|
+
pivotId: UID;
|
|
10485
|
+
onCellClicked: (formula: string) => void;
|
|
10486
|
+
}
|
|
10487
|
+
interface TableData {
|
|
10488
|
+
columns: PivotDialogColumn[][];
|
|
10489
|
+
rows: PivotDialogRow[];
|
|
10490
|
+
values: PivotDialogValue[][];
|
|
10491
|
+
}
|
|
10492
|
+
declare class PivotHTMLRenderer extends Component<Props$e, SpreadsheetChildEnv> {
|
|
10493
|
+
static template: string;
|
|
10494
|
+
static components: {
|
|
10495
|
+
Checkbox: typeof Checkbox;
|
|
10496
|
+
};
|
|
10497
|
+
static props: {
|
|
10498
|
+
pivotId: StringConstructor;
|
|
10499
|
+
onCellClicked: FunctionConstructor;
|
|
10500
|
+
};
|
|
10501
|
+
private pivot;
|
|
10502
|
+
data: TableData;
|
|
10503
|
+
private state;
|
|
10504
|
+
setup(): void;
|
|
10505
|
+
get tracker(): PivotPresenceTracker | undefined;
|
|
10506
|
+
/**
|
|
10507
|
+
* Retrieve the data to display in the Pivot Table
|
|
10508
|
+
* In the case when showMissingValuesOnly is false, the returned value
|
|
10509
|
+
* is the complete data
|
|
10510
|
+
* In the case when showMissingValuesOnly is true, the returned value is
|
|
10511
|
+
* the data which contains only missing values in the rows and cols. In
|
|
10512
|
+
* the rows, we also return the parent rows of rows which contains missing
|
|
10513
|
+
* values, to give context to the user.
|
|
10514
|
+
*
|
|
10515
|
+
*/
|
|
10516
|
+
getTableData(): TableData;
|
|
10517
|
+
/**
|
|
10518
|
+
* Retrieve the parents of the given row
|
|
10519
|
+
* ex:
|
|
10520
|
+
* Australia
|
|
10521
|
+
* January
|
|
10522
|
+
* February
|
|
10523
|
+
* The parent of "January" is "Australia"
|
|
10524
|
+
*/
|
|
10525
|
+
private addRecursiveRow;
|
|
10526
|
+
/**
|
|
10527
|
+
* Create the columns to be used, based on the indexes of the columns in
|
|
10528
|
+
* which a missing value is present
|
|
10529
|
+
*
|
|
10530
|
+
*/
|
|
10531
|
+
private buildColumnsMissing;
|
|
10532
|
+
/**
|
|
10533
|
+
* Create the rows to be used, based on the indexes of the rows in
|
|
10534
|
+
* which a missing value is present.
|
|
10535
|
+
*/
|
|
10536
|
+
private buildRowsMissing;
|
|
10537
|
+
/**
|
|
10538
|
+
* Create the value to be used, based on the indexes of the columns and
|
|
10539
|
+
* rows in which a missing value is present.
|
|
10540
|
+
*/
|
|
10541
|
+
private buildValuesMissing;
|
|
10542
|
+
private getColumnsIndexes;
|
|
10543
|
+
private getRowsIndexes;
|
|
10544
|
+
_buildColHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogColumn[][];
|
|
10545
|
+
_buildRowHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogRow[];
|
|
10546
|
+
_buildValues(id: UID, table: SpreadsheetPivotTable): PivotDialogValue[][];
|
|
10547
|
+
}
|
|
10548
|
+
|
|
10440
10549
|
interface Props$d {
|
|
10441
10550
|
figureId: UID;
|
|
10442
10551
|
definition: ComboChartDefinition;
|
|
@@ -10734,11 +10843,11 @@ interface Renderer {
|
|
|
10734
10843
|
renderingLayers: Readonly<LayerName[]>;
|
|
10735
10844
|
}
|
|
10736
10845
|
declare class RendererStore {
|
|
10737
|
-
mutators: readonly ["register", "unRegister"];
|
|
10846
|
+
mutators: readonly ["register", "unRegister", "drawLayer"];
|
|
10738
10847
|
private renderers;
|
|
10739
10848
|
register(renderer: Renderer): void;
|
|
10740
10849
|
unRegister(renderer: Renderer): void;
|
|
10741
|
-
drawLayer(context: GridRenderingContext, layer: LayerName):
|
|
10850
|
+
drawLayer(context: GridRenderingContext, layer: LayerName): string;
|
|
10742
10851
|
}
|
|
10743
10852
|
|
|
10744
10853
|
interface RippleProps {
|
|
@@ -11753,7 +11862,7 @@ declare const registries: {
|
|
|
11753
11862
|
clipboardHandlersRegistries: {
|
|
11754
11863
|
figureHandlers: Registry<{
|
|
11755
11864
|
new (getters: Getters, dispatch: {
|
|
11756
|
-
<T extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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", C extends Extract<UpdateCellCommand, {
|
|
11865
|
+
<T extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C extends Extract<UpdateCellCommand, {
|
|
11757
11866
|
type: T;
|
|
11758
11867
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11759
11868
|
type: T;
|
|
@@ -11983,8 +12092,12 @@ declare const registries: {
|
|
|
11983
12092
|
type: T;
|
|
11984
12093
|
}> | Extract<PaintFormat, {
|
|
11985
12094
|
type: T;
|
|
12095
|
+
}> | Extract<PivotStartPresenceTracking, {
|
|
12096
|
+
type: T;
|
|
12097
|
+
}> | Extract<PivotStopPresenceTracking, {
|
|
12098
|
+
type: T;
|
|
11986
12099
|
}>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
|
|
11987
|
-
<T_1 extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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", C_1 extends Extract<UpdateCellCommand, {
|
|
12100
|
+
<T_1 extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C_1 extends Extract<UpdateCellCommand, {
|
|
11988
12101
|
type: T_1;
|
|
11989
12102
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11990
12103
|
type: T_1;
|
|
@@ -12214,12 +12327,16 @@ declare const registries: {
|
|
|
12214
12327
|
type: T_1;
|
|
12215
12328
|
}> | Extract<PaintFormat, {
|
|
12216
12329
|
type: T_1;
|
|
12330
|
+
}> | Extract<PivotStartPresenceTracking, {
|
|
12331
|
+
type: T_1;
|
|
12332
|
+
}> | Extract<PivotStopPresenceTracking, {
|
|
12333
|
+
type: T_1;
|
|
12217
12334
|
}>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
|
|
12218
12335
|
}): AbstractFigureClipboardHandler<any>;
|
|
12219
12336
|
}>;
|
|
12220
12337
|
cellHandlers: Registry<{
|
|
12221
12338
|
new (getters: Getters, dispatch: {
|
|
12222
|
-
<T extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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", C extends Extract<UpdateCellCommand, {
|
|
12339
|
+
<T extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C extends Extract<UpdateCellCommand, {
|
|
12223
12340
|
type: T;
|
|
12224
12341
|
}> | Extract<UpdateCellPositionCommand, {
|
|
12225
12342
|
type: T;
|
|
@@ -12449,8 +12566,12 @@ declare const registries: {
|
|
|
12449
12566
|
type: T;
|
|
12450
12567
|
}> | Extract<PaintFormat, {
|
|
12451
12568
|
type: T;
|
|
12569
|
+
}> | Extract<PivotStartPresenceTracking, {
|
|
12570
|
+
type: T;
|
|
12571
|
+
}> | Extract<PivotStopPresenceTracking, {
|
|
12572
|
+
type: T;
|
|
12452
12573
|
}>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
|
|
12453
|
-
<T_1 extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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", C_1 extends Extract<UpdateCellCommand, {
|
|
12574
|
+
<T_1 extends "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" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "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" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C_1 extends Extract<UpdateCellCommand, {
|
|
12454
12575
|
type: T_1;
|
|
12455
12576
|
}> | Extract<UpdateCellPositionCommand, {
|
|
12456
12577
|
type: T_1;
|
|
@@ -12680,6 +12801,10 @@ declare const registries: {
|
|
|
12680
12801
|
type: T_1;
|
|
12681
12802
|
}> | Extract<PaintFormat, {
|
|
12682
12803
|
type: T_1;
|
|
12804
|
+
}> | Extract<PivotStartPresenceTracking, {
|
|
12805
|
+
type: T_1;
|
|
12806
|
+
}> | Extract<PivotStopPresenceTracking, {
|
|
12807
|
+
type: T_1;
|
|
12683
12808
|
}>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
|
|
12684
12809
|
}): AbstractCellClipboardHandler<any, any>;
|
|
12685
12810
|
}>;
|
|
@@ -12801,6 +12926,7 @@ declare const components: {
|
|
|
12801
12926
|
PivotDimensionOrder: typeof PivotDimensionOrder;
|
|
12802
12927
|
PivotDimension: typeof PivotDimension;
|
|
12803
12928
|
PivotLayoutConfigurator: typeof PivotLayoutConfigurator;
|
|
12929
|
+
PivotHTMLRenderer: typeof PivotHTMLRenderer;
|
|
12804
12930
|
PivotDeferUpdate: typeof PivotDeferUpdate;
|
|
12805
12931
|
PivotTitleSection: typeof PivotTitleSection;
|
|
12806
12932
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -13340,7 +13466,7 @@ declare const chartHelpers: {
|
|
|
13340
13466
|
useLeftAxis: boolean;
|
|
13341
13467
|
useRightAxis: boolean;
|
|
13342
13468
|
};
|
|
13343
|
-
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string
|
|
13469
|
+
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string) => any;
|
|
13344
13470
|
formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
13345
13471
|
getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
|
|
13346
13472
|
truncateLabel(label: string | undefined): string;
|
|
@@ -13371,4 +13497,4 @@ declare const chartHelpers: {
|
|
|
13371
13497
|
WaterfallChart: typeof WaterfallChart;
|
|
13372
13498
|
};
|
|
13373
13499
|
|
|
13374
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
13500
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|