@odoo/o-spreadsheet 18.1.0-alpha.1 → 18.1.0-alpha.2
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 +908 -549
- package/dist/o-spreadsheet.d.ts +310 -244
- package/dist/o-spreadsheet.esm.js +908 -549
- package/dist/o-spreadsheet.iife.js +908 -549
- package/dist/o-spreadsheet.iife.min.js +438 -408
- package/dist/o_spreadsheet.xml +264 -341
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -317,6 +317,24 @@ type PyramidChartRuntime = {
|
|
|
317
317
|
background: Color;
|
|
318
318
|
};
|
|
319
319
|
|
|
320
|
+
interface RadarChartDefinition {
|
|
321
|
+
readonly dataSets: CustomizedDataSet[];
|
|
322
|
+
readonly dataSetsHaveTitle: boolean;
|
|
323
|
+
readonly labelRange?: string;
|
|
324
|
+
readonly title: TitleDesign;
|
|
325
|
+
readonly background?: Color;
|
|
326
|
+
readonly legendPosition: LegendPosition;
|
|
327
|
+
readonly aggregated?: boolean;
|
|
328
|
+
readonly type: "radar";
|
|
329
|
+
readonly stacked: boolean;
|
|
330
|
+
readonly axesDesign?: AxesDesign;
|
|
331
|
+
readonly fillArea?: boolean;
|
|
332
|
+
}
|
|
333
|
+
type RadarChartRuntime = {
|
|
334
|
+
chartJsConfig: ChartConfiguration;
|
|
335
|
+
background: Color;
|
|
336
|
+
};
|
|
337
|
+
|
|
320
338
|
interface ScatterChartDefinition extends Omit<LineChartDefinition, "type" | "stacked" | "cumulative"> {
|
|
321
339
|
readonly type: "scatter";
|
|
322
340
|
}
|
|
@@ -378,14 +396,14 @@ type WaterfallChartRuntime = {
|
|
|
378
396
|
background: Color;
|
|
379
397
|
};
|
|
380
398
|
|
|
381
|
-
declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo", "waterfall", "pyramid"];
|
|
399
|
+
declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo", "waterfall", "pyramid", "radar"];
|
|
382
400
|
type ChartType = (typeof CHART_TYPES)[number];
|
|
383
|
-
type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition | WaterfallChartDefinition | PyramidChartDefinition;
|
|
384
|
-
type
|
|
401
|
+
type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition | WaterfallChartDefinition | PyramidChartDefinition | RadarChartDefinition;
|
|
402
|
+
type ChartWithDataSetDefinition = Extract<ChartDefinition, {
|
|
385
403
|
dataSets: CustomizedDataSet[];
|
|
386
404
|
labelRange?: string;
|
|
387
405
|
}>;
|
|
388
|
-
type ChartJSRuntime = LineChartRuntime | PieChartRuntime | BarChartRuntime | ComboChartRuntime | ScatterChartRuntime | WaterfallChartRuntime | PyramidChartRuntime;
|
|
406
|
+
type ChartJSRuntime = LineChartRuntime | PieChartRuntime | BarChartRuntime | ComboChartRuntime | ScatterChartRuntime | WaterfallChartRuntime | PyramidChartRuntime | RadarChartRuntime;
|
|
389
407
|
type ChartRuntime = ChartJSRuntime | ScorecardChartRuntime | GaugeChartRuntime;
|
|
390
408
|
interface LabelValues {
|
|
391
409
|
readonly values: string[];
|
|
@@ -415,12 +433,13 @@ interface TitleDesign {
|
|
|
415
433
|
readonly align?: Align;
|
|
416
434
|
readonly color?: Color;
|
|
417
435
|
}
|
|
418
|
-
type TrendType = "polynomial" | "exponential" | "logarithmic";
|
|
436
|
+
type TrendType = "polynomial" | "exponential" | "logarithmic" | "trailingMovingAverage";
|
|
419
437
|
interface TrendConfiguration {
|
|
420
438
|
type?: TrendType;
|
|
421
439
|
order?: number;
|
|
422
440
|
color?: Color;
|
|
423
441
|
display?: boolean;
|
|
442
|
+
window?: number;
|
|
424
443
|
}
|
|
425
444
|
type CustomizedDataSet = {
|
|
426
445
|
readonly dataRange: string;
|
|
@@ -444,7 +463,7 @@ interface ExcelChartDataset {
|
|
|
444
463
|
readonly backgroundColor?: Color;
|
|
445
464
|
readonly rightYAxis?: boolean;
|
|
446
465
|
}
|
|
447
|
-
type ExcelChartType = "line" | "bar" | "pie" | "combo" | "scatter";
|
|
466
|
+
type ExcelChartType = "line" | "bar" | "pie" | "combo" | "scatter" | "radar";
|
|
448
467
|
interface ExcelChartDefinition {
|
|
449
468
|
readonly title?: TitleDesign;
|
|
450
469
|
readonly type: ExcelChartType;
|
|
@@ -577,6 +596,7 @@ interface CommonPivotCoreDefinition {
|
|
|
577
596
|
rows: PivotCoreDimension[];
|
|
578
597
|
measures: PivotCoreMeasure[];
|
|
579
598
|
name: string;
|
|
599
|
+
deferUpdates?: boolean;
|
|
580
600
|
}
|
|
581
601
|
interface SpreadsheetPivotCoreDefinition extends CommonPivotCoreDefinition {
|
|
582
602
|
type: "SPREADSHEET";
|
|
@@ -794,12 +814,12 @@ interface ZoneDependentCommand {
|
|
|
794
814
|
}
|
|
795
815
|
declare function isZoneDependent(cmd: CoreCommand): boolean;
|
|
796
816
|
declare function isPositionDependent(cmd: CoreCommand): boolean;
|
|
797
|
-
declare const invalidateEvaluationCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA">;
|
|
798
|
-
declare const invalidateChartEvaluationCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA">;
|
|
799
|
-
declare const invalidateDependenciesCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA">;
|
|
800
|
-
declare const invalidateCFEvaluationCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA">;
|
|
801
|
-
declare const invalidateBordersCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA">;
|
|
802
|
-
declare const readonlyAllowedCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA">;
|
|
817
|
+
declare const invalidateEvaluationCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
|
|
818
|
+
declare const invalidateChartEvaluationCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
|
|
819
|
+
declare const invalidateDependenciesCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
|
|
820
|
+
declare const invalidateCFEvaluationCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
|
|
821
|
+
declare const invalidateBordersCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
|
|
822
|
+
declare const readonlyAllowedCommands: Set<"CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
|
|
803
823
|
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" | "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">;
|
|
804
824
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
805
825
|
declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
@@ -977,7 +997,7 @@ interface CreateImageOverCommand extends SheetDependentCommand {
|
|
|
977
997
|
interface CreateTableCommand extends RangesDependentCommand {
|
|
978
998
|
type: "CREATE_TABLE";
|
|
979
999
|
sheetId: UID;
|
|
980
|
-
config
|
|
1000
|
+
config: TableConfig;
|
|
981
1001
|
tableType: CoreTableType;
|
|
982
1002
|
}
|
|
983
1003
|
interface RemoveTableCommand extends TargetDependentCommand {
|
|
@@ -1076,6 +1096,7 @@ interface DuplicatePivotCommand {
|
|
|
1076
1096
|
type: "DUPLICATE_PIVOT";
|
|
1077
1097
|
pivotId: UID;
|
|
1078
1098
|
newPivotId: string;
|
|
1099
|
+
duplicatedPivotName?: string;
|
|
1079
1100
|
}
|
|
1080
1101
|
interface RemoveDuplicatesCommand {
|
|
1081
1102
|
type: "REMOVE_DUPLICATES";
|
|
@@ -1344,6 +1365,9 @@ interface SplitPivotFormulaCommand extends PositionDependentCommand {
|
|
|
1344
1365
|
type: "SPLIT_PIVOT_FORMULA";
|
|
1345
1366
|
pivotId: UID;
|
|
1346
1367
|
}
|
|
1368
|
+
interface PaintFormat extends TargetDependentCommand {
|
|
1369
|
+
type: "PAINT_FORMAT";
|
|
1370
|
+
}
|
|
1347
1371
|
type CoreCommand =
|
|
1348
1372
|
/** CELLS */
|
|
1349
1373
|
UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCommand | DeleteContentCommand
|
|
@@ -1375,7 +1399,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
|
|
|
1375
1399
|
| UpdateLocaleCommand
|
|
1376
1400
|
/** PIVOT */
|
|
1377
1401
|
| AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
|
|
1378
|
-
type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | 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;
|
|
1402
|
+
type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | 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;
|
|
1379
1403
|
type Command = CoreCommand | LocalCommand;
|
|
1380
1404
|
/**
|
|
1381
1405
|
* Holds the result of a command dispatch.
|
|
@@ -5884,9 +5908,7 @@ interface ModelExternalConfig {
|
|
|
5884
5908
|
}
|
|
5885
5909
|
declare class Model extends EventBus<any> implements CommandDispatcher {
|
|
5886
5910
|
private corePlugins;
|
|
5887
|
-
private featurePlugins;
|
|
5888
5911
|
private statefulUIPlugins;
|
|
5889
|
-
private coreViewsPlugins;
|
|
5890
5912
|
private range;
|
|
5891
5913
|
private session;
|
|
5892
5914
|
/**
|
|
@@ -6492,7 +6514,7 @@ interface ChartSubtypeProperties {
|
|
|
6492
6514
|
preview: string;
|
|
6493
6515
|
}
|
|
6494
6516
|
|
|
6495
|
-
interface Props$
|
|
6517
|
+
interface Props$17 {
|
|
6496
6518
|
label?: string;
|
|
6497
6519
|
value: boolean;
|
|
6498
6520
|
className?: string;
|
|
@@ -6501,7 +6523,7 @@ interface Props$16 {
|
|
|
6501
6523
|
disabled?: boolean;
|
|
6502
6524
|
onChange: (value: boolean) => void;
|
|
6503
6525
|
}
|
|
6504
|
-
declare class Checkbox extends Component<Props$
|
|
6526
|
+
declare class Checkbox extends Component<Props$17, SpreadsheetChildEnv> {
|
|
6505
6527
|
static template: string;
|
|
6506
6528
|
static props: {
|
|
6507
6529
|
label: {
|
|
@@ -6536,16 +6558,20 @@ declare class Checkbox extends Component<Props$16, SpreadsheetChildEnv> {
|
|
|
6536
6558
|
onChange(ev: InputEvent): void;
|
|
6537
6559
|
}
|
|
6538
6560
|
|
|
6539
|
-
interface Props$
|
|
6561
|
+
interface Props$16 {
|
|
6540
6562
|
class?: string;
|
|
6541
6563
|
}
|
|
6542
|
-
declare class Section extends Component<Props$
|
|
6564
|
+
declare class Section extends Component<Props$16, SpreadsheetChildEnv> {
|
|
6543
6565
|
static template: string;
|
|
6544
6566
|
static props: {
|
|
6545
6567
|
class: {
|
|
6546
6568
|
type: StringConstructor;
|
|
6547
6569
|
optional: boolean;
|
|
6548
6570
|
};
|
|
6571
|
+
title: {
|
|
6572
|
+
type: StringConstructor;
|
|
6573
|
+
optional: boolean;
|
|
6574
|
+
};
|
|
6549
6575
|
slots: ObjectConstructor;
|
|
6550
6576
|
};
|
|
6551
6577
|
}
|
|
@@ -6668,7 +6694,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
6668
6694
|
getIndex(rangeId: number | null): number | null;
|
|
6669
6695
|
}
|
|
6670
6696
|
|
|
6671
|
-
interface Props$
|
|
6697
|
+
interface Props$15 {
|
|
6672
6698
|
ranges: string[];
|
|
6673
6699
|
hasSingleRange?: boolean;
|
|
6674
6700
|
required?: boolean;
|
|
@@ -6691,7 +6717,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
6691
6717
|
* onSelectionChanged is called every time the input value
|
|
6692
6718
|
* changes.
|
|
6693
6719
|
*/
|
|
6694
|
-
declare class SelectionInput extends Component<Props$
|
|
6720
|
+
declare class SelectionInput extends Component<Props$15, SpreadsheetChildEnv> {
|
|
6695
6721
|
static template: string;
|
|
6696
6722
|
static props: {
|
|
6697
6723
|
ranges: ArrayConstructor;
|
|
@@ -6746,13 +6772,13 @@ declare class SelectionInput extends Component<Props$14, SpreadsheetChildEnv> {
|
|
|
6746
6772
|
confirm(): void;
|
|
6747
6773
|
}
|
|
6748
6774
|
|
|
6749
|
-
interface Props$
|
|
6775
|
+
interface Props$14 {
|
|
6750
6776
|
ranges: CustomizedDataSet[];
|
|
6751
6777
|
hasSingleRange?: boolean;
|
|
6752
6778
|
onSelectionChanged: (ranges: string[]) => void;
|
|
6753
6779
|
onSelectionConfirmed: () => void;
|
|
6754
6780
|
}
|
|
6755
|
-
declare class ChartDataSeries extends Component<Props$
|
|
6781
|
+
declare class ChartDataSeries extends Component<Props$14, SpreadsheetChildEnv> {
|
|
6756
6782
|
static template: string;
|
|
6757
6783
|
static components: {
|
|
6758
6784
|
SelectionInput: typeof SelectionInput;
|
|
@@ -6772,12 +6798,12 @@ declare class ChartDataSeries extends Component<Props$13, SpreadsheetChildEnv> {
|
|
|
6772
6798
|
get title(): string;
|
|
6773
6799
|
}
|
|
6774
6800
|
|
|
6775
|
-
interface Props$
|
|
6801
|
+
interface Props$13 {
|
|
6776
6802
|
messages: string[];
|
|
6777
6803
|
msgType: "warning" | "error" | "info";
|
|
6778
6804
|
singleBox?: boolean;
|
|
6779
6805
|
}
|
|
6780
|
-
declare class ValidationMessages extends Component<Props$
|
|
6806
|
+
declare class ValidationMessages extends Component<Props$13, SpreadsheetChildEnv> {
|
|
6781
6807
|
static template: string;
|
|
6782
6808
|
static props: {
|
|
6783
6809
|
messages: ArrayConstructor;
|
|
@@ -6791,10 +6817,10 @@ declare class ValidationMessages extends Component<Props$12, SpreadsheetChildEnv
|
|
|
6791
6817
|
get alertBoxes(): string[][];
|
|
6792
6818
|
}
|
|
6793
6819
|
|
|
6794
|
-
interface Props$
|
|
6820
|
+
interface Props$12 {
|
|
6795
6821
|
messages: string[];
|
|
6796
6822
|
}
|
|
6797
|
-
declare class ChartErrorSection extends Component<Props$
|
|
6823
|
+
declare class ChartErrorSection extends Component<Props$12, SpreadsheetChildEnv> {
|
|
6798
6824
|
static template: string;
|
|
6799
6825
|
static components: {
|
|
6800
6826
|
Section: typeof Section;
|
|
@@ -6808,7 +6834,7 @@ declare class ChartErrorSection extends Component<Props$11, SpreadsheetChildEnv>
|
|
|
6808
6834
|
};
|
|
6809
6835
|
}
|
|
6810
6836
|
|
|
6811
|
-
interface Props$
|
|
6837
|
+
interface Props$11 {
|
|
6812
6838
|
title?: string;
|
|
6813
6839
|
range: string;
|
|
6814
6840
|
isInvalid: boolean;
|
|
@@ -6821,7 +6847,7 @@ interface Props$10 {
|
|
|
6821
6847
|
onChange: (value: boolean) => void;
|
|
6822
6848
|
}>;
|
|
6823
6849
|
}
|
|
6824
|
-
declare class ChartLabelRange extends Component<Props$
|
|
6850
|
+
declare class ChartLabelRange extends Component<Props$11, SpreadsheetChildEnv> {
|
|
6825
6851
|
static template: string;
|
|
6826
6852
|
static components: {
|
|
6827
6853
|
SelectionInput: typeof SelectionInput;
|
|
@@ -6842,16 +6868,16 @@ declare class ChartLabelRange extends Component<Props$10, SpreadsheetChildEnv> {
|
|
|
6842
6868
|
optional: boolean;
|
|
6843
6869
|
};
|
|
6844
6870
|
};
|
|
6845
|
-
static defaultProps: Partial<Props$
|
|
6871
|
+
static defaultProps: Partial<Props$11>;
|
|
6846
6872
|
}
|
|
6847
6873
|
|
|
6848
|
-
interface Props
|
|
6874
|
+
interface Props$10 {
|
|
6849
6875
|
figureId: UID;
|
|
6850
|
-
definition:
|
|
6851
|
-
canUpdateChart: (figureId: UID, definition: Partial<
|
|
6852
|
-
updateChart: (figureId: UID, definition: Partial<
|
|
6876
|
+
definition: ChartWithDataSetDefinition;
|
|
6877
|
+
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
6878
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
6853
6879
|
}
|
|
6854
|
-
declare class GenericChartConfigPanel extends Component<Props
|
|
6880
|
+
declare class GenericChartConfigPanel extends Component<Props$10, SpreadsheetChildEnv> {
|
|
6855
6881
|
static template: string;
|
|
6856
6882
|
static components: {
|
|
6857
6883
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -6927,13 +6953,16 @@ declare class GenericChartConfigPanel extends Component<Props$$, SpreadsheetChil
|
|
|
6927
6953
|
declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
6928
6954
|
static template: string;
|
|
6929
6955
|
onUpdateStacked(stacked: boolean): void;
|
|
6930
|
-
onUpdateAggregated(aggregated: boolean): void;
|
|
6931
6956
|
}
|
|
6932
6957
|
|
|
6933
6958
|
declare class SidePanelCollapsible extends Component {
|
|
6934
6959
|
static template: string;
|
|
6935
6960
|
static props: {
|
|
6936
6961
|
slots: ObjectConstructor;
|
|
6962
|
+
title: {
|
|
6963
|
+
type: StringConstructor;
|
|
6964
|
+
optional: boolean;
|
|
6965
|
+
};
|
|
6937
6966
|
collapsedAtInit: {
|
|
6938
6967
|
type: BooleanConstructor;
|
|
6939
6968
|
optional: boolean;
|
|
@@ -6947,32 +6976,20 @@ declare class SidePanelCollapsible extends Component {
|
|
|
6947
6976
|
}
|
|
6948
6977
|
|
|
6949
6978
|
interface Choice$1 {
|
|
6950
|
-
value:
|
|
6979
|
+
value: string;
|
|
6951
6980
|
label: string;
|
|
6952
6981
|
}
|
|
6953
|
-
interface Props
|
|
6982
|
+
interface Props$$ {
|
|
6954
6983
|
choices: Choice$1[];
|
|
6955
|
-
onChange: (value:
|
|
6984
|
+
onChange: (value: string) => void;
|
|
6956
6985
|
selectedValue: string;
|
|
6957
|
-
name: string;
|
|
6958
|
-
direction: "horizontal" | "vertical";
|
|
6959
6986
|
}
|
|
6960
|
-
declare class
|
|
6987
|
+
declare class BadgeSelection extends Component<Props$$, SpreadsheetChildEnv> {
|
|
6961
6988
|
static template: string;
|
|
6962
6989
|
static props: {
|
|
6963
6990
|
choices: ArrayConstructor;
|
|
6964
6991
|
onChange: FunctionConstructor;
|
|
6965
|
-
selectedValue:
|
|
6966
|
-
optional: boolean;
|
|
6967
|
-
};
|
|
6968
|
-
name: StringConstructor;
|
|
6969
|
-
direction: {
|
|
6970
|
-
type: StringConstructor;
|
|
6971
|
-
optional: boolean;
|
|
6972
|
-
};
|
|
6973
|
-
};
|
|
6974
|
-
static defaultProps: {
|
|
6975
|
-
direction: string;
|
|
6992
|
+
selectedValue: StringConstructor;
|
|
6976
6993
|
};
|
|
6977
6994
|
}
|
|
6978
6995
|
|
|
@@ -7119,7 +7136,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7119
7136
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7120
7137
|
}
|
|
7121
7138
|
|
|
7122
|
-
interface Props$
|
|
7139
|
+
interface Props$_ {
|
|
7123
7140
|
currentColor: string | undefined;
|
|
7124
7141
|
toggleColorPicker: () => void;
|
|
7125
7142
|
showColorPicker: boolean;
|
|
@@ -7130,7 +7147,7 @@ interface Props$Z {
|
|
|
7130
7147
|
dropdownMaxHeight?: Pixel;
|
|
7131
7148
|
class?: string;
|
|
7132
7149
|
}
|
|
7133
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7150
|
+
declare class ColorPickerWidget extends Component<Props$_, SpreadsheetChildEnv> {
|
|
7134
7151
|
static template: string;
|
|
7135
7152
|
static props: {
|
|
7136
7153
|
currentColor: {
|
|
@@ -7168,60 +7185,7 @@ declare class ColorPickerWidget extends Component<Props$Z, SpreadsheetChildEnv>
|
|
|
7168
7185
|
get colorPickerAnchorRect(): Rect;
|
|
7169
7186
|
}
|
|
7170
7187
|
|
|
7171
|
-
interface Props$
|
|
7172
|
-
currentColor?: string;
|
|
7173
|
-
onColorPicked: (color: string) => void;
|
|
7174
|
-
title?: string;
|
|
7175
|
-
}
|
|
7176
|
-
declare class RoundColorPicker extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
7177
|
-
static template: string;
|
|
7178
|
-
static components: {
|
|
7179
|
-
ColorPickerWidget: typeof ColorPickerWidget;
|
|
7180
|
-
Section: typeof Section;
|
|
7181
|
-
ColorPicker: typeof ColorPicker;
|
|
7182
|
-
};
|
|
7183
|
-
static props: {
|
|
7184
|
-
currentColor: {
|
|
7185
|
-
type: StringConstructor;
|
|
7186
|
-
optional: boolean;
|
|
7187
|
-
};
|
|
7188
|
-
title: {
|
|
7189
|
-
type: StringConstructor;
|
|
7190
|
-
optional: boolean;
|
|
7191
|
-
};
|
|
7192
|
-
onColorPicked: FunctionConstructor;
|
|
7193
|
-
};
|
|
7194
|
-
colorPickerButtonRef: {
|
|
7195
|
-
el: HTMLElement | null;
|
|
7196
|
-
};
|
|
7197
|
-
private state;
|
|
7198
|
-
setup(): void;
|
|
7199
|
-
closePicker(): void;
|
|
7200
|
-
togglePicker(): void;
|
|
7201
|
-
onColorPicked(color: string): void;
|
|
7202
|
-
get colorPickerAnchorRect(): Rect;
|
|
7203
|
-
get buttonStyle(): string;
|
|
7204
|
-
}
|
|
7205
|
-
|
|
7206
|
-
interface Choice {
|
|
7207
|
-
value: string;
|
|
7208
|
-
label: string;
|
|
7209
|
-
}
|
|
7210
|
-
interface Props$X {
|
|
7211
|
-
choices: Choice[];
|
|
7212
|
-
onChange: (value: string) => void;
|
|
7213
|
-
selectedValue: string;
|
|
7214
|
-
}
|
|
7215
|
-
declare class BadgeSelection extends Component<Props$X, SpreadsheetChildEnv> {
|
|
7216
|
-
static template: string;
|
|
7217
|
-
static props: {
|
|
7218
|
-
choices: ArrayConstructor;
|
|
7219
|
-
onChange: FunctionConstructor;
|
|
7220
|
-
selectedValue: StringConstructor;
|
|
7221
|
-
};
|
|
7222
|
-
}
|
|
7223
|
-
|
|
7224
|
-
interface Props$W {
|
|
7188
|
+
interface Props$Z {
|
|
7225
7189
|
title?: string;
|
|
7226
7190
|
updateTitle: (title: string) => void;
|
|
7227
7191
|
name?: string;
|
|
@@ -7231,7 +7195,7 @@ interface Props$W {
|
|
|
7231
7195
|
updateColor?: (Color: any) => void;
|
|
7232
7196
|
style: TitleDesign;
|
|
7233
7197
|
}
|
|
7234
|
-
declare class ChartTitle extends Component<Props$
|
|
7198
|
+
declare class ChartTitle extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
7235
7199
|
static template: string;
|
|
7236
7200
|
static components: {
|
|
7237
7201
|
Section: typeof Section;
|
|
@@ -7294,13 +7258,13 @@ interface AxisDefinition {
|
|
|
7294
7258
|
id: string;
|
|
7295
7259
|
name: string;
|
|
7296
7260
|
}
|
|
7297
|
-
interface Props$
|
|
7261
|
+
interface Props$Y {
|
|
7298
7262
|
figureId: UID;
|
|
7299
|
-
definition:
|
|
7300
|
-
updateChart: (figureId: UID, definition: Partial<
|
|
7263
|
+
definition: ChartWithDataSetDefinition | WaterfallChartDefinition;
|
|
7264
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition | WaterfallChartDefinition>) => DispatchResult;
|
|
7301
7265
|
axesList: AxisDefinition[];
|
|
7302
7266
|
}
|
|
7303
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
7267
|
+
declare class AxisDesignEditor extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
7304
7268
|
static template: string;
|
|
7305
7269
|
static components: {
|
|
7306
7270
|
Section: typeof Section;
|
|
@@ -7330,12 +7294,46 @@ declare class AxisDesignEditor extends Component<Props$V, SpreadsheetChildEnv> {
|
|
|
7330
7294
|
updateAxisTitle(text: string): void;
|
|
7331
7295
|
}
|
|
7332
7296
|
|
|
7333
|
-
interface Props$
|
|
7297
|
+
interface Props$X {
|
|
7298
|
+
currentColor?: string;
|
|
7299
|
+
onColorPicked: (color: string) => void;
|
|
7300
|
+
title?: string;
|
|
7301
|
+
}
|
|
7302
|
+
declare class RoundColorPicker extends Component<Props$X, SpreadsheetChildEnv> {
|
|
7303
|
+
static template: string;
|
|
7304
|
+
static components: {
|
|
7305
|
+
Section: typeof Section;
|
|
7306
|
+
ColorPicker: typeof ColorPicker;
|
|
7307
|
+
};
|
|
7308
|
+
static props: {
|
|
7309
|
+
currentColor: {
|
|
7310
|
+
type: StringConstructor;
|
|
7311
|
+
optional: boolean;
|
|
7312
|
+
};
|
|
7313
|
+
title: {
|
|
7314
|
+
type: StringConstructor;
|
|
7315
|
+
optional: boolean;
|
|
7316
|
+
};
|
|
7317
|
+
onColorPicked: FunctionConstructor;
|
|
7318
|
+
};
|
|
7319
|
+
colorPickerButtonRef: {
|
|
7320
|
+
el: HTMLElement | null;
|
|
7321
|
+
};
|
|
7322
|
+
private state;
|
|
7323
|
+
setup(): void;
|
|
7324
|
+
closePicker(): void;
|
|
7325
|
+
togglePicker(): void;
|
|
7326
|
+
onColorPicked(color: string): void;
|
|
7327
|
+
get colorPickerAnchorRect(): Rect;
|
|
7328
|
+
get buttonStyle(): string;
|
|
7329
|
+
}
|
|
7330
|
+
|
|
7331
|
+
interface Props$W {
|
|
7334
7332
|
figureId: UID;
|
|
7335
7333
|
definition: ChartDefinition;
|
|
7336
7334
|
updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
7337
7335
|
}
|
|
7338
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
7336
|
+
declare class GeneralDesignEditor extends Component<Props$W, SpreadsheetChildEnv> {
|
|
7339
7337
|
static template: string;
|
|
7340
7338
|
static components: {
|
|
7341
7339
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -7365,65 +7363,148 @@ declare class GeneralDesignEditor extends Component<Props$U, SpreadsheetChildEnv
|
|
|
7365
7363
|
updateChartTitleAlignment(align: "left" | "center" | "right"): void;
|
|
7366
7364
|
}
|
|
7367
7365
|
|
|
7368
|
-
interface
|
|
7366
|
+
interface Choice {
|
|
7367
|
+
value: unknown;
|
|
7368
|
+
label: string;
|
|
7369
|
+
}
|
|
7370
|
+
interface Props$V {
|
|
7371
|
+
choices: Choice[];
|
|
7372
|
+
onChange: (value: unknown) => void;
|
|
7373
|
+
selectedValue: string;
|
|
7374
|
+
name: string;
|
|
7375
|
+
direction: "horizontal" | "vertical";
|
|
7376
|
+
}
|
|
7377
|
+
declare class RadioSelection extends Component<Props$V, SpreadsheetChildEnv> {
|
|
7378
|
+
static template: string;
|
|
7379
|
+
static props: {
|
|
7380
|
+
choices: ArrayConstructor;
|
|
7381
|
+
onChange: FunctionConstructor;
|
|
7382
|
+
selectedValue: {
|
|
7383
|
+
optional: boolean;
|
|
7384
|
+
};
|
|
7385
|
+
name: StringConstructor;
|
|
7386
|
+
direction: {
|
|
7387
|
+
type: StringConstructor;
|
|
7388
|
+
optional: boolean;
|
|
7389
|
+
};
|
|
7390
|
+
};
|
|
7391
|
+
static defaultProps: {
|
|
7392
|
+
direction: string;
|
|
7393
|
+
};
|
|
7394
|
+
}
|
|
7395
|
+
|
|
7396
|
+
interface Props$U {
|
|
7369
7397
|
figureId: UID;
|
|
7370
|
-
definition:
|
|
7371
|
-
canUpdateChart: (figureID: UID, definition: Partial<
|
|
7372
|
-
updateChart: (figureId: UID, definition: Partial<
|
|
7398
|
+
definition: ChartWithDataSetDefinition;
|
|
7399
|
+
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7400
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7373
7401
|
}
|
|
7374
|
-
declare class
|
|
7402
|
+
declare class SeriesDesignEditor extends Component<Props$U, SpreadsheetChildEnv> {
|
|
7375
7403
|
static template: string;
|
|
7376
7404
|
static components: {
|
|
7377
|
-
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
7378
7405
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
7379
7406
|
Section: typeof Section;
|
|
7380
|
-
AxisDesignEditor: typeof AxisDesignEditor;
|
|
7381
7407
|
RoundColorPicker: typeof RoundColorPicker;
|
|
7408
|
+
};
|
|
7409
|
+
static props: {
|
|
7410
|
+
figureId: StringConstructor;
|
|
7411
|
+
definition: ObjectConstructor;
|
|
7412
|
+
updateChart: FunctionConstructor;
|
|
7413
|
+
canUpdateChart: FunctionConstructor;
|
|
7414
|
+
slots: {
|
|
7415
|
+
type: ObjectConstructor;
|
|
7416
|
+
optional: boolean;
|
|
7417
|
+
};
|
|
7418
|
+
};
|
|
7419
|
+
protected state: {
|
|
7420
|
+
index: number;
|
|
7421
|
+
};
|
|
7422
|
+
getDataSeries(): (string | undefined)[];
|
|
7423
|
+
updateSerieEditor(ev: any): void;
|
|
7424
|
+
updateDataSeriesColor(color: string): void;
|
|
7425
|
+
getDataSerieColor(): "" | Color;
|
|
7426
|
+
updateDataSeriesLabel(ev: any): void;
|
|
7427
|
+
getDataSerieLabel(): string | undefined;
|
|
7428
|
+
}
|
|
7429
|
+
|
|
7430
|
+
interface Props$T {
|
|
7431
|
+
figureId: UID;
|
|
7432
|
+
definition: ChartWithDataSetDefinition;
|
|
7433
|
+
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7434
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7435
|
+
}
|
|
7436
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$T, SpreadsheetChildEnv> {
|
|
7437
|
+
static template: string;
|
|
7438
|
+
static components: {
|
|
7439
|
+
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
7382
7440
|
Checkbox: typeof Checkbox;
|
|
7383
7441
|
RadioSelection: typeof RadioSelection;
|
|
7442
|
+
Section: typeof Section;
|
|
7443
|
+
RoundColorPicker: typeof RoundColorPicker;
|
|
7384
7444
|
};
|
|
7385
7445
|
static props: {
|
|
7386
7446
|
figureId: StringConstructor;
|
|
7387
7447
|
definition: ObjectConstructor;
|
|
7388
7448
|
canUpdateChart: FunctionConstructor;
|
|
7389
7449
|
updateChart: FunctionConstructor;
|
|
7450
|
+
slots: {
|
|
7451
|
+
type: ObjectConstructor;
|
|
7452
|
+
optional: boolean;
|
|
7453
|
+
};
|
|
7390
7454
|
};
|
|
7391
7455
|
axisChoices: {
|
|
7392
7456
|
value: string;
|
|
7393
7457
|
label: string;
|
|
7394
7458
|
}[];
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
};
|
|
7398
|
-
get axesList(): AxisDefinition[];
|
|
7399
|
-
updateLegendPosition(ev: any): void;
|
|
7400
|
-
getDataSeries(): any[];
|
|
7401
|
-
updateSerieEditor(ev: any): void;
|
|
7402
|
-
updateDataSeriesColor(color: string): void;
|
|
7403
|
-
getDataSerieColor(): "" | Color;
|
|
7404
|
-
updateDataSeriesAxis(axis: "left" | "right"): void;
|
|
7405
|
-
getDataSerieAxis(): "left" | "right";
|
|
7459
|
+
updateDataSeriesAxis(index: number, axis: "left" | "right"): void;
|
|
7460
|
+
getDataSerieAxis(index: number): "left" | "right";
|
|
7406
7461
|
get canHaveTwoVerticalAxis(): boolean;
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
updateShowValues(showValues: boolean): void;
|
|
7410
|
-
toggleDataTrend(display: boolean): void;
|
|
7411
|
-
getTrendLineConfiguration(): TrendConfiguration | undefined;
|
|
7462
|
+
toggleDataTrend(index: number, display: boolean): void;
|
|
7463
|
+
getTrendLineConfiguration(index: number): TrendConfiguration | undefined;
|
|
7412
7464
|
getTrendType(config: TrendConfiguration): "linear" | "" | TrendType | undefined;
|
|
7413
|
-
onChangeTrendType(ev: InputEvent): void;
|
|
7414
|
-
onChangePolynomialDegree(ev: InputEvent): void;
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7465
|
+
onChangeTrendType(index: any, ev: InputEvent): void;
|
|
7466
|
+
onChangePolynomialDegree(index: number, ev: InputEvent): void;
|
|
7467
|
+
get defaultWindowSize(): number;
|
|
7468
|
+
onChangeMovingAverageWindow(index: number, ev: InputEvent): void;
|
|
7469
|
+
getDataSerieColor(index: number): "" | Color;
|
|
7470
|
+
getTrendLineColor(index: number): string;
|
|
7471
|
+
updateTrendLineColor(index: number, color: Color): void;
|
|
7472
|
+
updateTrendLineValue(index: number, config: any): void;
|
|
7418
7473
|
}
|
|
7419
7474
|
|
|
7420
7475
|
interface Props$S {
|
|
7476
|
+
figureId: UID;
|
|
7477
|
+
definition: ChartWithDataSetDefinition;
|
|
7478
|
+
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7479
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7480
|
+
}
|
|
7481
|
+
declare class ChartWithAxisDesignPanel<P extends Props$S = Props$S> extends Component<P, SpreadsheetChildEnv> {
|
|
7482
|
+
static template: string;
|
|
7483
|
+
static components: {
|
|
7484
|
+
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
7485
|
+
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
7486
|
+
Section: typeof Section;
|
|
7487
|
+
AxisDesignEditor: typeof AxisDesignEditor;
|
|
7488
|
+
Checkbox: typeof Checkbox;
|
|
7489
|
+
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
7490
|
+
};
|
|
7491
|
+
static props: {
|
|
7492
|
+
figureId: StringConstructor;
|
|
7493
|
+
definition: ObjectConstructor;
|
|
7494
|
+
canUpdateChart: FunctionConstructor;
|
|
7495
|
+
updateChart: FunctionConstructor;
|
|
7496
|
+
};
|
|
7497
|
+
get axesList(): AxisDefinition[];
|
|
7498
|
+
updateLegendPosition(ev: any): void;
|
|
7499
|
+
}
|
|
7500
|
+
|
|
7501
|
+
interface Props$R {
|
|
7421
7502
|
figureId: UID;
|
|
7422
7503
|
definition: GaugeChartDefinition;
|
|
7423
7504
|
canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7424
7505
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7425
7506
|
}
|
|
7426
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
7507
|
+
declare class GaugeChartConfigPanel extends Component<Props$R, SpreadsheetChildEnv> {
|
|
7427
7508
|
static template: string;
|
|
7428
7509
|
static components: {
|
|
7429
7510
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -7448,13 +7529,13 @@ interface PanelState {
|
|
|
7448
7529
|
sectionRuleDispatchResult?: DispatchResult;
|
|
7449
7530
|
sectionRule: SectionRule;
|
|
7450
7531
|
}
|
|
7451
|
-
interface Props$
|
|
7532
|
+
interface Props$Q {
|
|
7452
7533
|
figureId: UID;
|
|
7453
7534
|
definition: GaugeChartDefinition;
|
|
7454
7535
|
canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7455
7536
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7456
7537
|
}
|
|
7457
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
7538
|
+
declare class GaugeChartDesignPanel extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
7458
7539
|
static template: string;
|
|
7459
7540
|
static components: {
|
|
7460
7541
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -7496,17 +7577,16 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
7496
7577
|
}[];
|
|
7497
7578
|
onUpdateLabelsAsText(labelsAsText: boolean): void;
|
|
7498
7579
|
onUpdateStacked(stacked: boolean): void;
|
|
7499
|
-
onUpdateAggregated(aggregated: boolean): void;
|
|
7500
7580
|
onUpdateCumulative(cumulative: boolean): void;
|
|
7501
7581
|
}
|
|
7502
7582
|
|
|
7503
|
-
interface Props$
|
|
7583
|
+
interface Props$P {
|
|
7504
7584
|
figureId: UID;
|
|
7505
7585
|
definition: ScorecardChartDefinition;
|
|
7506
7586
|
canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7507
7587
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7508
7588
|
}
|
|
7509
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
7589
|
+
declare class ScorecardChartConfigPanel extends Component<Props$P, SpreadsheetChildEnv> {
|
|
7510
7590
|
static template: string;
|
|
7511
7591
|
static components: {
|
|
7512
7592
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7535,13 +7615,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$Q, SpreadsheetCh
|
|
|
7535
7615
|
}
|
|
7536
7616
|
|
|
7537
7617
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
7538
|
-
interface Props$
|
|
7618
|
+
interface Props$O {
|
|
7539
7619
|
figureId: UID;
|
|
7540
7620
|
definition: ScorecardChartDefinition;
|
|
7541
7621
|
canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7542
7622
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7543
7623
|
}
|
|
7544
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
7624
|
+
declare class ScorecardChartDesignPanel extends Component<Props$O, SpreadsheetChildEnv> {
|
|
7545
7625
|
static template: string;
|
|
7546
7626
|
static components: {
|
|
7547
7627
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -7699,13 +7779,13 @@ interface EnrichedToken extends Token {
|
|
|
7699
7779
|
functionContext?: FunctionContext;
|
|
7700
7780
|
}
|
|
7701
7781
|
|
|
7702
|
-
interface Props$
|
|
7782
|
+
interface Props$N {
|
|
7703
7783
|
proposals: AutoCompleteProposal[];
|
|
7704
7784
|
selectedIndex: number | undefined;
|
|
7705
7785
|
onValueSelected: (value: string) => void;
|
|
7706
7786
|
onValueHovered: (index: string) => void;
|
|
7707
7787
|
}
|
|
7708
|
-
declare class TextValueProvider extends Component<Props$
|
|
7788
|
+
declare class TextValueProvider extends Component<Props$N> {
|
|
7709
7789
|
static template: string;
|
|
7710
7790
|
static props: {
|
|
7711
7791
|
proposals: ArrayConstructor;
|
|
@@ -7791,19 +7871,19 @@ declare class ContentEditableHelper {
|
|
|
7791
7871
|
getText(): string;
|
|
7792
7872
|
}
|
|
7793
7873
|
|
|
7794
|
-
interface Props$
|
|
7874
|
+
interface Props$M {
|
|
7795
7875
|
functionName: string;
|
|
7796
7876
|
functionDescription: FunctionDescription;
|
|
7797
7877
|
argToFocus: number;
|
|
7798
7878
|
}
|
|
7799
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
7879
|
+
declare class FunctionDescriptionProvider extends Component<Props$M, SpreadsheetChildEnv> {
|
|
7800
7880
|
static template: string;
|
|
7801
7881
|
static props: {
|
|
7802
7882
|
functionName: StringConstructor;
|
|
7803
7883
|
functionDescription: ObjectConstructor;
|
|
7804
7884
|
argToFocus: NumberConstructor;
|
|
7805
7885
|
};
|
|
7806
|
-
getContext(): Props$
|
|
7886
|
+
getContext(): Props$M;
|
|
7807
7887
|
get formulaArgSeparator(): string;
|
|
7808
7888
|
}
|
|
7809
7889
|
|
|
@@ -8169,10 +8249,10 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
8169
8249
|
private setComposerContent;
|
|
8170
8250
|
}
|
|
8171
8251
|
|
|
8172
|
-
interface Props$
|
|
8252
|
+
interface Props$L {
|
|
8173
8253
|
figure: Figure;
|
|
8174
8254
|
}
|
|
8175
|
-
declare class ChartJsComponent extends Component<Props$
|
|
8255
|
+
declare class ChartJsComponent extends Component<Props$L, SpreadsheetChildEnv> {
|
|
8176
8256
|
static template: string;
|
|
8177
8257
|
static props: {
|
|
8178
8258
|
figure: ObjectConstructor;
|
|
@@ -8188,10 +8268,10 @@ declare class ChartJsComponent extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
8188
8268
|
private updateChartJs;
|
|
8189
8269
|
}
|
|
8190
8270
|
|
|
8191
|
-
interface Props$
|
|
8271
|
+
interface Props$K {
|
|
8192
8272
|
figure: Figure;
|
|
8193
8273
|
}
|
|
8194
|
-
declare class ScorecardChart extends Component<Props$
|
|
8274
|
+
declare class ScorecardChart extends Component<Props$K, SpreadsheetChildEnv> {
|
|
8195
8275
|
static template: string;
|
|
8196
8276
|
static props: {
|
|
8197
8277
|
figure: ObjectConstructor;
|
|
@@ -8204,7 +8284,7 @@ declare class ScorecardChart extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
8204
8284
|
}
|
|
8205
8285
|
|
|
8206
8286
|
type MenuItemOrSeparator = Action | "separator";
|
|
8207
|
-
interface Props$
|
|
8287
|
+
interface Props$J {
|
|
8208
8288
|
position: DOMCoordinates;
|
|
8209
8289
|
menuItems: Action[];
|
|
8210
8290
|
depth: number;
|
|
@@ -8223,7 +8303,7 @@ interface MenuState {
|
|
|
8223
8303
|
menuItems: Action[];
|
|
8224
8304
|
isHoveringChild?: boolean;
|
|
8225
8305
|
}
|
|
8226
|
-
declare class Menu extends Component<Props$
|
|
8306
|
+
declare class Menu extends Component<Props$J, SpreadsheetChildEnv> {
|
|
8227
8307
|
static template: string;
|
|
8228
8308
|
static props: {
|
|
8229
8309
|
position: ObjectConstructor;
|
|
@@ -8299,14 +8379,14 @@ declare class Menu extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
8299
8379
|
}
|
|
8300
8380
|
|
|
8301
8381
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
8302
|
-
interface Props$
|
|
8382
|
+
interface Props$I {
|
|
8303
8383
|
figure: Figure;
|
|
8304
8384
|
style: string;
|
|
8305
8385
|
onFigureDeleted: () => void;
|
|
8306
8386
|
onMouseDown: (ev: MouseEvent) => void;
|
|
8307
8387
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
8308
8388
|
}
|
|
8309
|
-
declare class FigureComponent extends Component<Props$
|
|
8389
|
+
declare class FigureComponent extends Component<Props$I, SpreadsheetChildEnv> {
|
|
8310
8390
|
static template: string;
|
|
8311
8391
|
static props: {
|
|
8312
8392
|
figure: ObjectConstructor;
|
|
@@ -8355,11 +8435,11 @@ declare class FigureComponent extends Component<Props$J, SpreadsheetChildEnv> {
|
|
|
8355
8435
|
private openContextMenu;
|
|
8356
8436
|
}
|
|
8357
8437
|
|
|
8358
|
-
interface Props$
|
|
8438
|
+
interface Props$H {
|
|
8359
8439
|
figure: Figure;
|
|
8360
8440
|
onFigureDeleted: () => void;
|
|
8361
8441
|
}
|
|
8362
|
-
declare class ChartFigure extends Component<Props$
|
|
8442
|
+
declare class ChartFigure extends Component<Props$H, SpreadsheetChildEnv> {
|
|
8363
8443
|
static template: string;
|
|
8364
8444
|
static props: {
|
|
8365
8445
|
figure: ObjectConstructor;
|
|
@@ -8371,7 +8451,7 @@ declare class ChartFigure extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
8371
8451
|
get chartComponent(): new (...args: any) => Component;
|
|
8372
8452
|
}
|
|
8373
8453
|
|
|
8374
|
-
interface Props$
|
|
8454
|
+
interface Props$G {
|
|
8375
8455
|
isVisible: boolean;
|
|
8376
8456
|
position: Position;
|
|
8377
8457
|
}
|
|
@@ -8383,7 +8463,7 @@ interface State$8 {
|
|
|
8383
8463
|
position: Position;
|
|
8384
8464
|
handler: boolean;
|
|
8385
8465
|
}
|
|
8386
|
-
declare class Autofill extends Component<Props$
|
|
8466
|
+
declare class Autofill extends Component<Props$G, SpreadsheetChildEnv> {
|
|
8387
8467
|
static template: string;
|
|
8388
8468
|
static props: {
|
|
8389
8469
|
position: ObjectConstructor;
|
|
@@ -8417,7 +8497,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
8417
8497
|
get tagStyle(): string;
|
|
8418
8498
|
}
|
|
8419
8499
|
|
|
8420
|
-
interface Props$
|
|
8500
|
+
interface Props$F {
|
|
8421
8501
|
gridDims: DOMDimension;
|
|
8422
8502
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
8423
8503
|
}
|
|
@@ -8425,7 +8505,7 @@ interface Props$G {
|
|
|
8425
8505
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
8426
8506
|
* It also applies the style of the cell to the composer input.
|
|
8427
8507
|
*/
|
|
8428
|
-
declare class GridComposer extends Component<Props$
|
|
8508
|
+
declare class GridComposer extends Component<Props$F, SpreadsheetChildEnv> {
|
|
8429
8509
|
static template: string;
|
|
8430
8510
|
static props: {
|
|
8431
8511
|
gridDims: ObjectConstructor;
|
|
@@ -8483,10 +8563,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
|
|
|
8483
8563
|
isPositionVisible(position: CellPosition): boolean;
|
|
8484
8564
|
}
|
|
8485
8565
|
|
|
8486
|
-
interface Props$
|
|
8566
|
+
interface Props$E {
|
|
8487
8567
|
cellPosition: CellPosition;
|
|
8488
8568
|
}
|
|
8489
|
-
declare class DataValidationCheckbox extends Component<Props$
|
|
8569
|
+
declare class DataValidationCheckbox extends Component<Props$E, SpreadsheetChildEnv> {
|
|
8490
8570
|
static template: string;
|
|
8491
8571
|
static components: {
|
|
8492
8572
|
Checkbox: typeof Checkbox;
|
|
@@ -8499,10 +8579,10 @@ declare class DataValidationCheckbox extends Component<Props$F, SpreadsheetChild
|
|
|
8499
8579
|
get isDisabled(): boolean;
|
|
8500
8580
|
}
|
|
8501
8581
|
|
|
8502
|
-
interface Props$
|
|
8582
|
+
interface Props$D {
|
|
8503
8583
|
cellPosition: CellPosition;
|
|
8504
8584
|
}
|
|
8505
|
-
declare class DataValidationListIcon extends Component<Props$
|
|
8585
|
+
declare class DataValidationListIcon extends Component<Props$D, SpreadsheetChildEnv> {
|
|
8506
8586
|
static template: string;
|
|
8507
8587
|
static props: {
|
|
8508
8588
|
cellPosition: ObjectConstructor;
|
|
@@ -8532,7 +8612,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
8532
8612
|
}
|
|
8533
8613
|
|
|
8534
8614
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
8535
|
-
interface Props$
|
|
8615
|
+
interface Props$C {
|
|
8536
8616
|
onFigureDeleted: () => void;
|
|
8537
8617
|
}
|
|
8538
8618
|
interface Container {
|
|
@@ -8611,7 +8691,7 @@ interface DndState {
|
|
|
8611
8691
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
8612
8692
|
*
|
|
8613
8693
|
*/
|
|
8614
|
-
declare class FiguresContainer extends Component<Props$
|
|
8694
|
+
declare class FiguresContainer extends Component<Props$C, SpreadsheetChildEnv> {
|
|
8615
8695
|
static template: string;
|
|
8616
8696
|
static props: {
|
|
8617
8697
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -8666,10 +8746,10 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
8666
8746
|
private computePopoverAnchorRect;
|
|
8667
8747
|
}
|
|
8668
8748
|
|
|
8669
|
-
interface Props$
|
|
8749
|
+
interface Props$B {
|
|
8670
8750
|
cellPosition: CellPosition;
|
|
8671
8751
|
}
|
|
8672
|
-
declare class FilterIcon extends Component<Props$
|
|
8752
|
+
declare class FilterIcon extends Component<Props$B, SpreadsheetChildEnv> {
|
|
8673
8753
|
static template: string;
|
|
8674
8754
|
static props: {
|
|
8675
8755
|
cellPosition: ObjectConstructor;
|
|
@@ -8691,10 +8771,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
|
|
|
8691
8771
|
getFilterHeadersPositions(): CellPosition[];
|
|
8692
8772
|
}
|
|
8693
8773
|
|
|
8694
|
-
interface Props$
|
|
8774
|
+
interface Props$A {
|
|
8695
8775
|
focusGrid: () => void;
|
|
8696
8776
|
}
|
|
8697
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
8777
|
+
declare class GridAddRowsFooter extends Component<Props$A, SpreadsheetChildEnv> {
|
|
8698
8778
|
static template: string;
|
|
8699
8779
|
static props: {
|
|
8700
8780
|
focusGrid: FunctionConstructor;
|
|
@@ -8718,7 +8798,7 @@ declare class GridAddRowsFooter extends Component<Props$B, SpreadsheetChildEnv>
|
|
|
8718
8798
|
private onExternalClick;
|
|
8719
8799
|
}
|
|
8720
8800
|
|
|
8721
|
-
interface Props$
|
|
8801
|
+
interface Props$z {
|
|
8722
8802
|
onCellHovered: (position: Partial<Position$1>) => void;
|
|
8723
8803
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
8724
8804
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers) => void;
|
|
@@ -8728,7 +8808,7 @@ interface Props$A {
|
|
|
8728
8808
|
gridOverlayDimensions: string;
|
|
8729
8809
|
onFigureDeleted: () => void;
|
|
8730
8810
|
}
|
|
8731
|
-
declare class GridOverlay extends Component<Props$
|
|
8811
|
+
declare class GridOverlay extends Component<Props$z, SpreadsheetChildEnv> {
|
|
8732
8812
|
static template: string;
|
|
8733
8813
|
static props: {
|
|
8734
8814
|
onCellHovered: {
|
|
@@ -8786,12 +8866,12 @@ declare class GridOverlay extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
8786
8866
|
private getCartesianCoordinates;
|
|
8787
8867
|
}
|
|
8788
8868
|
|
|
8789
|
-
interface Props$
|
|
8869
|
+
interface Props$y {
|
|
8790
8870
|
gridRect: Rect;
|
|
8791
8871
|
onClosePopover: () => void;
|
|
8792
8872
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
8793
8873
|
}
|
|
8794
|
-
declare class GridPopover extends Component<Props$
|
|
8874
|
+
declare class GridPopover extends Component<Props$y, SpreadsheetChildEnv> {
|
|
8795
8875
|
static template: string;
|
|
8796
8876
|
static props: {
|
|
8797
8877
|
onClosePopover: FunctionConstructor;
|
|
@@ -8934,13 +9014,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
8934
9014
|
}
|
|
8935
9015
|
|
|
8936
9016
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
8937
|
-
interface Props$
|
|
9017
|
+
interface Props$x {
|
|
8938
9018
|
zone: Zone;
|
|
8939
9019
|
orientation: Orientation$1;
|
|
8940
9020
|
isMoving: boolean;
|
|
8941
9021
|
onMoveHighlight: (x: Pixel, y: Pixel) => void;
|
|
8942
9022
|
}
|
|
8943
|
-
declare class Border extends Component<Props$
|
|
9023
|
+
declare class Border extends Component<Props$x, SpreadsheetChildEnv> {
|
|
8944
9024
|
static template: string;
|
|
8945
9025
|
static props: {
|
|
8946
9026
|
zone: ObjectConstructor;
|
|
@@ -8953,14 +9033,14 @@ declare class Border extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
8953
9033
|
}
|
|
8954
9034
|
|
|
8955
9035
|
type Orientation = "nw" | "ne" | "sw" | "se";
|
|
8956
|
-
interface Props$
|
|
9036
|
+
interface Props$w {
|
|
8957
9037
|
zone: Zone;
|
|
8958
9038
|
color: Color;
|
|
8959
9039
|
orientation: Orientation;
|
|
8960
9040
|
isResizing: boolean;
|
|
8961
9041
|
onResizeHighlight: (isLeft: boolean, isRight: boolean) => void;
|
|
8962
9042
|
}
|
|
8963
|
-
declare class Corner extends Component<Props$
|
|
9043
|
+
declare class Corner extends Component<Props$w, SpreadsheetChildEnv> {
|
|
8964
9044
|
static template: string;
|
|
8965
9045
|
static props: {
|
|
8966
9046
|
zone: ObjectConstructor;
|
|
@@ -8975,14 +9055,14 @@ declare class Corner extends Component<Props$x, SpreadsheetChildEnv> {
|
|
|
8975
9055
|
onMouseDown(ev: MouseEvent): void;
|
|
8976
9056
|
}
|
|
8977
9057
|
|
|
8978
|
-
interface Props$
|
|
9058
|
+
interface Props$v {
|
|
8979
9059
|
zone: Zone;
|
|
8980
9060
|
color: Color;
|
|
8981
9061
|
}
|
|
8982
9062
|
interface HighlightState {
|
|
8983
9063
|
shiftingMode: "isMoving" | "isResizing" | "none";
|
|
8984
9064
|
}
|
|
8985
|
-
declare class Highlight extends Component<Props$
|
|
9065
|
+
declare class Highlight extends Component<Props$v, SpreadsheetChildEnv> {
|
|
8986
9066
|
static template: string;
|
|
8987
9067
|
static props: {
|
|
8988
9068
|
zone: ObjectConstructor;
|
|
@@ -8999,7 +9079,7 @@ declare class Highlight extends Component<Props$w, SpreadsheetChildEnv> {
|
|
|
8999
9079
|
|
|
9000
9080
|
type ScrollDirection = "horizontal" | "vertical";
|
|
9001
9081
|
|
|
9002
|
-
interface Props$
|
|
9082
|
+
interface Props$u {
|
|
9003
9083
|
width: Pixel;
|
|
9004
9084
|
height: Pixel;
|
|
9005
9085
|
direction: ScrollDirection;
|
|
@@ -9007,7 +9087,7 @@ interface Props$v {
|
|
|
9007
9087
|
offset: Pixel;
|
|
9008
9088
|
onScroll: (offset: Pixel) => void;
|
|
9009
9089
|
}
|
|
9010
|
-
declare class ScrollBar extends Component<Props$
|
|
9090
|
+
declare class ScrollBar extends Component<Props$u> {
|
|
9011
9091
|
static props: {
|
|
9012
9092
|
width: {
|
|
9013
9093
|
type: NumberConstructor;
|
|
@@ -9035,10 +9115,10 @@ declare class ScrollBar extends Component<Props$v> {
|
|
|
9035
9115
|
onScroll(ev: any): void;
|
|
9036
9116
|
}
|
|
9037
9117
|
|
|
9038
|
-
interface Props$
|
|
9118
|
+
interface Props$t {
|
|
9039
9119
|
leftOffset: number;
|
|
9040
9120
|
}
|
|
9041
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
9121
|
+
declare class HorizontalScrollBar extends Component<Props$t, SpreadsheetChildEnv> {
|
|
9042
9122
|
static props: {
|
|
9043
9123
|
leftOffset: {
|
|
9044
9124
|
type: NumberConstructor;
|
|
@@ -9064,10 +9144,10 @@ declare class HorizontalScrollBar extends Component<Props$u, SpreadsheetChildEnv
|
|
|
9064
9144
|
onScroll(offset: any): void;
|
|
9065
9145
|
}
|
|
9066
9146
|
|
|
9067
|
-
interface Props$
|
|
9147
|
+
interface Props$s {
|
|
9068
9148
|
topOffset: number;
|
|
9069
9149
|
}
|
|
9070
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
9150
|
+
declare class VerticalScrollBar extends Component<Props$s, SpreadsheetChildEnv> {
|
|
9071
9151
|
static props: {
|
|
9072
9152
|
topOffset: {
|
|
9073
9153
|
type: NumberConstructor;
|
|
@@ -9093,13 +9173,13 @@ declare class VerticalScrollBar extends Component<Props$t, SpreadsheetChildEnv>
|
|
|
9093
9173
|
onScroll(offset: any): void;
|
|
9094
9174
|
}
|
|
9095
9175
|
|
|
9096
|
-
interface Props$
|
|
9176
|
+
interface Props$r {
|
|
9097
9177
|
table: Table;
|
|
9098
9178
|
}
|
|
9099
9179
|
interface State$7 {
|
|
9100
9180
|
highlightZone: Zone | undefined;
|
|
9101
9181
|
}
|
|
9102
|
-
declare class TableResizer extends Component<Props$
|
|
9182
|
+
declare class TableResizer extends Component<Props$r, SpreadsheetChildEnv> {
|
|
9103
9183
|
static template: string;
|
|
9104
9184
|
static props: {
|
|
9105
9185
|
table: ObjectConstructor;
|
|
@@ -9131,10 +9211,10 @@ declare class HoveredCellStore extends SpreadsheetStore {
|
|
|
9131
9211
|
* - a vertical resizer (same, for rows)
|
|
9132
9212
|
*/
|
|
9133
9213
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
9134
|
-
interface Props$
|
|
9214
|
+
interface Props$q {
|
|
9135
9215
|
exposeFocus: (focus: () => void) => void;
|
|
9136
9216
|
}
|
|
9137
|
-
declare class Grid extends Component<Props$
|
|
9217
|
+
declare class Grid extends Component<Props$q, SpreadsheetChildEnv> {
|
|
9138
9218
|
static template: string;
|
|
9139
9219
|
static props: {
|
|
9140
9220
|
exposeFocus: FunctionConstructor;
|
|
@@ -9243,7 +9323,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
9243
9323
|
private getChartDefinitionFromContextCreation;
|
|
9244
9324
|
}
|
|
9245
9325
|
|
|
9246
|
-
interface Props$
|
|
9326
|
+
interface Props$p {
|
|
9247
9327
|
figureId: UID;
|
|
9248
9328
|
chartPanelStore: MainChartPanelStore;
|
|
9249
9329
|
}
|
|
@@ -9251,7 +9331,7 @@ interface ChartTypePickerState {
|
|
|
9251
9331
|
popoverProps: PopoverProps | undefined;
|
|
9252
9332
|
popoverStyle: string;
|
|
9253
9333
|
}
|
|
9254
|
-
declare class ChartTypePicker extends Component<Props$
|
|
9334
|
+
declare class ChartTypePicker extends Component<Props$p, SpreadsheetChildEnv> {
|
|
9255
9335
|
static template: string;
|
|
9256
9336
|
static components: {
|
|
9257
9337
|
Section: typeof Section;
|
|
@@ -9286,11 +9366,11 @@ declare class ChartTypePicker extends Component<Props$q, SpreadsheetChildEnv> {
|
|
|
9286
9366
|
private closePopover;
|
|
9287
9367
|
}
|
|
9288
9368
|
|
|
9289
|
-
interface Props$
|
|
9369
|
+
interface Props$o {
|
|
9290
9370
|
onCloseSidePanel: () => void;
|
|
9291
9371
|
figureId: UID;
|
|
9292
9372
|
}
|
|
9293
|
-
declare class ChartPanel extends Component<Props$
|
|
9373
|
+
declare class ChartPanel extends Component<Props$o, SpreadsheetChildEnv> {
|
|
9294
9374
|
static template: string;
|
|
9295
9375
|
static components: {
|
|
9296
9376
|
Section: typeof Section;
|
|
@@ -9310,13 +9390,13 @@ declare class ChartPanel extends Component<Props$p, SpreadsheetChildEnv> {
|
|
|
9310
9390
|
private getChartDefinition;
|
|
9311
9391
|
}
|
|
9312
9392
|
|
|
9313
|
-
interface Props$
|
|
9393
|
+
interface Props$n {
|
|
9314
9394
|
figureId: UID;
|
|
9315
9395
|
definition: PieChartDefinition;
|
|
9316
9396
|
canUpdateChart: (figureID: UID, definition: Partial<PieChartDefinition>) => DispatchResult;
|
|
9317
9397
|
updateChart: (figureId: UID, definition: Partial<PieChartDefinition>) => DispatchResult;
|
|
9318
9398
|
}
|
|
9319
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
9399
|
+
declare class PieChartDesignPanel extends Component<Props$n, SpreadsheetChildEnv> {
|
|
9320
9400
|
static template: string;
|
|
9321
9401
|
static components: {
|
|
9322
9402
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -9335,10 +9415,10 @@ declare class PieChartDesignPanel extends Component<Props$o, SpreadsheetChildEnv
|
|
|
9335
9415
|
updateLegendPosition(ev: any): void;
|
|
9336
9416
|
}
|
|
9337
9417
|
|
|
9338
|
-
interface Props$
|
|
9418
|
+
interface Props$m {
|
|
9339
9419
|
items: ActionSpec[];
|
|
9340
9420
|
}
|
|
9341
|
-
declare class CogWheelMenu extends Component<Props$
|
|
9421
|
+
declare class CogWheelMenu extends Component<Props$m, SpreadsheetChildEnv> {
|
|
9342
9422
|
static template: string;
|
|
9343
9423
|
static components: {
|
|
9344
9424
|
Menu: typeof Menu;
|
|
@@ -9358,10 +9438,11 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9358
9438
|
private activeSheetMatches;
|
|
9359
9439
|
private specificRangeMatches;
|
|
9360
9440
|
private currentSearchRegex;
|
|
9361
|
-
private isSearchDirty;
|
|
9362
9441
|
private initialShowFormulaState;
|
|
9363
9442
|
private preserveSelectedMatchIndex;
|
|
9364
9443
|
private irreplaceableMatchCount;
|
|
9444
|
+
private isSearchDirty;
|
|
9445
|
+
private shouldFinalizeUpdateSelection;
|
|
9365
9446
|
private notificationStore;
|
|
9366
9447
|
selectedMatchIndex: number | null;
|
|
9367
9448
|
toSearch: string;
|
|
@@ -9420,26 +9501,6 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9420
9501
|
get highlights(): Highlight$1[];
|
|
9421
9502
|
}
|
|
9422
9503
|
|
|
9423
|
-
/** @odoo-module */
|
|
9424
|
-
|
|
9425
|
-
interface Props$m {
|
|
9426
|
-
name: string;
|
|
9427
|
-
displayName: string;
|
|
9428
|
-
onChanged: (name: string) => void;
|
|
9429
|
-
}
|
|
9430
|
-
declare class EditableName extends Component<Props$m, SpreadsheetChildEnv> {
|
|
9431
|
-
static template: string;
|
|
9432
|
-
static props: {
|
|
9433
|
-
name: StringConstructor;
|
|
9434
|
-
displayName: StringConstructor;
|
|
9435
|
-
onChanged: FunctionConstructor;
|
|
9436
|
-
};
|
|
9437
|
-
private state;
|
|
9438
|
-
setup(): void;
|
|
9439
|
-
rename(): void;
|
|
9440
|
-
save(): void;
|
|
9441
|
-
}
|
|
9442
|
-
|
|
9443
9504
|
interface Props$l {
|
|
9444
9505
|
deferUpdate: boolean;
|
|
9445
9506
|
isDirty: boolean;
|
|
@@ -9871,7 +9932,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9871
9932
|
type: string;
|
|
9872
9933
|
xAxisID: string;
|
|
9873
9934
|
label: string;
|
|
9874
|
-
data: number[];
|
|
9935
|
+
data: (number | null)[];
|
|
9875
9936
|
order: number;
|
|
9876
9937
|
showLine: boolean;
|
|
9877
9938
|
pointRadius: number;
|
|
@@ -9912,7 +9973,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9912
9973
|
type: string;
|
|
9913
9974
|
xAxisID: string;
|
|
9914
9975
|
label: string;
|
|
9915
|
-
data: number[];
|
|
9976
|
+
data: (number | null)[];
|
|
9916
9977
|
order: number;
|
|
9917
9978
|
showLine: boolean;
|
|
9918
9979
|
pointRadius: number;
|
|
@@ -9984,7 +10045,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9984
10045
|
type: string;
|
|
9985
10046
|
xAxisID: string;
|
|
9986
10047
|
label: string;
|
|
9987
|
-
data: number[];
|
|
10048
|
+
data: (number | null)[];
|
|
9988
10049
|
order: number;
|
|
9989
10050
|
showLine: boolean;
|
|
9990
10051
|
pointRadius: number;
|
|
@@ -10014,7 +10075,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
10014
10075
|
type: string;
|
|
10015
10076
|
xAxisID: string;
|
|
10016
10077
|
label: string;
|
|
10017
|
-
data: number[];
|
|
10078
|
+
data: (number | null)[];
|
|
10018
10079
|
order: number;
|
|
10019
10080
|
showLine: boolean;
|
|
10020
10081
|
pointRadius: number;
|
|
@@ -10056,7 +10117,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
10056
10117
|
type: string;
|
|
10057
10118
|
xAxisID: string;
|
|
10058
10119
|
label: string;
|
|
10059
|
-
data: number[];
|
|
10120
|
+
data: (number | null)[];
|
|
10060
10121
|
order: number;
|
|
10061
10122
|
showLine: boolean;
|
|
10062
10123
|
pointRadius: number;
|
|
@@ -11241,7 +11302,6 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
11241
11302
|
};
|
|
11242
11303
|
spreadsheetRect: Rect;
|
|
11243
11304
|
private _focusGrid?;
|
|
11244
|
-
private keyDownMapping;
|
|
11245
11305
|
private isViewportTooSmall;
|
|
11246
11306
|
private notificationStore;
|
|
11247
11307
|
private composerFocusStore;
|
|
@@ -11252,7 +11312,6 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
11252
11312
|
private unbindModelEvents;
|
|
11253
11313
|
private checkViewportSize;
|
|
11254
11314
|
focusGrid(): void;
|
|
11255
|
-
onKeydown(ev: KeyboardEvent): void;
|
|
11256
11315
|
get gridHeight(): Pixel;
|
|
11257
11316
|
get gridContainerStyle(): string;
|
|
11258
11317
|
get rowLayers(): HeaderGroup[][];
|
|
@@ -11355,7 +11414,7 @@ declare const registries: {
|
|
|
11355
11414
|
clipboardHandlersRegistries: {
|
|
11356
11415
|
figureHandlers: Registry<{
|
|
11357
11416
|
new (getters: Getters, dispatch: {
|
|
11358
|
-
<T extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA", C extends Extract<UpdateCellCommand, {
|
|
11417
|
+
<T extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C extends Extract<UpdateCellCommand, {
|
|
11359
11418
|
type: T;
|
|
11360
11419
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11361
11420
|
type: T;
|
|
@@ -11579,8 +11638,10 @@ declare const registries: {
|
|
|
11579
11638
|
type: T;
|
|
11580
11639
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
11581
11640
|
type: T;
|
|
11641
|
+
}> | Extract<PaintFormat, {
|
|
11642
|
+
type: T;
|
|
11582
11643
|
}>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
|
|
11583
|
-
<T_1 extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA", C_1 extends Extract<UpdateCellCommand, {
|
|
11644
|
+
<T_1 extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C_1 extends Extract<UpdateCellCommand, {
|
|
11584
11645
|
type: T_1;
|
|
11585
11646
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11586
11647
|
type: T_1;
|
|
@@ -11804,12 +11865,14 @@ declare const registries: {
|
|
|
11804
11865
|
type: T_1;
|
|
11805
11866
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
11806
11867
|
type: T_1;
|
|
11868
|
+
}> | Extract<PaintFormat, {
|
|
11869
|
+
type: T_1;
|
|
11807
11870
|
}>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
|
|
11808
11871
|
}): AbstractFigureClipboardHandler<any>;
|
|
11809
11872
|
}>;
|
|
11810
11873
|
cellHandlers: Registry<{
|
|
11811
11874
|
new (getters: Getters, dispatch: {
|
|
11812
|
-
<T extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA", C extends Extract<UpdateCellCommand, {
|
|
11875
|
+
<T extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C extends Extract<UpdateCellCommand, {
|
|
11813
11876
|
type: T;
|
|
11814
11877
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11815
11878
|
type: T;
|
|
@@ -12033,8 +12096,10 @@ declare const registries: {
|
|
|
12033
12096
|
type: T;
|
|
12034
12097
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
12035
12098
|
type: T;
|
|
12099
|
+
}> | Extract<PaintFormat, {
|
|
12100
|
+
type: T;
|
|
12036
12101
|
}>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
|
|
12037
|
-
<T_1 extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA", C_1 extends Extract<UpdateCellCommand, {
|
|
12102
|
+
<T_1 extends "CUT" | "COPY" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C_1 extends Extract<UpdateCellCommand, {
|
|
12038
12103
|
type: T_1;
|
|
12039
12104
|
}> | Extract<UpdateCellPositionCommand, {
|
|
12040
12105
|
type: T_1;
|
|
@@ -12258,6 +12323,8 @@ declare const registries: {
|
|
|
12258
12323
|
type: T_1;
|
|
12259
12324
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
12260
12325
|
type: T_1;
|
|
12326
|
+
}> | Extract<PaintFormat, {
|
|
12327
|
+
type: T_1;
|
|
12261
12328
|
}>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
|
|
12262
12329
|
}): AbstractCellClipboardHandler<any, any>;
|
|
12263
12330
|
}>;
|
|
@@ -12376,7 +12443,6 @@ declare const components: {
|
|
|
12376
12443
|
PivotDimensionOrder: typeof PivotDimensionOrder;
|
|
12377
12444
|
PivotDimension: typeof PivotDimension;
|
|
12378
12445
|
PivotLayoutConfigurator: typeof PivotLayoutConfigurator;
|
|
12379
|
-
EditableName: typeof EditableName;
|
|
12380
12446
|
PivotDeferUpdate: typeof PivotDeferUpdate;
|
|
12381
12447
|
PivotTitleSection: typeof PivotTitleSection;
|
|
12382
12448
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -12433,4 +12499,4 @@ declare const constants: {
|
|
|
12433
12499
|
}[];
|
|
12434
12500
|
};
|
|
12435
12501
|
|
|
12436
|
-
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, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType,
|
|
12502
|
+
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, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, 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, 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, EvaluatedCell, EvaluationError, ExcelCellData, 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, 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, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, 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, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, 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, 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 };
|