@odoo/o-spreadsheet 18.1.0-alpha.1 → 18.1.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/o-spreadsheet.cjs.js +4005 -3272
- package/dist/o-spreadsheet.d.ts +421 -273
- package/dist/o-spreadsheet.esm.js +4005 -3272
- package/dist/o-spreadsheet.iife.js +4006 -3273
- package/dist/o-spreadsheet.iife.min.js +570 -523
- package/dist/o_spreadsheet.xml +353 -412
- package/package.json +2 -2
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as chart_js from 'chart.js';
|
|
2
|
-
import { ChartConfiguration, Chart, ChartDataset } from 'chart.js';
|
|
2
|
+
import { ChartConfiguration, Chart, ChartDataset, LegendItem } from 'chart.js';
|
|
3
3
|
import * as _odoo_owl from '@odoo/owl';
|
|
4
4
|
import { ComponentConstructor, Component } from '@odoo/owl';
|
|
5
5
|
import * as chart_js_dist_types_basic from 'chart.js/dist/types/basic';
|
|
@@ -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.
|
|
@@ -3010,6 +3034,7 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
|
|
|
3010
3034
|
private checkValidPriorityChange;
|
|
3011
3035
|
private checkEmptyRange;
|
|
3012
3036
|
private checkCFRule;
|
|
3037
|
+
private checkCFHasChanged;
|
|
3013
3038
|
private checkOperatorArgsNumber;
|
|
3014
3039
|
private checkNaN;
|
|
3015
3040
|
private checkFormulaCompilation;
|
|
@@ -5884,9 +5909,7 @@ interface ModelExternalConfig {
|
|
|
5884
5909
|
}
|
|
5885
5910
|
declare class Model extends EventBus<any> implements CommandDispatcher {
|
|
5886
5911
|
private corePlugins;
|
|
5887
|
-
private featurePlugins;
|
|
5888
5912
|
private statefulUIPlugins;
|
|
5889
|
-
private coreViewsPlugins;
|
|
5890
5913
|
private range;
|
|
5891
5914
|
private session;
|
|
5892
5915
|
/**
|
|
@@ -6492,7 +6515,7 @@ interface ChartSubtypeProperties {
|
|
|
6492
6515
|
preview: string;
|
|
6493
6516
|
}
|
|
6494
6517
|
|
|
6495
|
-
interface Props$
|
|
6518
|
+
interface Props$18 {
|
|
6496
6519
|
label?: string;
|
|
6497
6520
|
value: boolean;
|
|
6498
6521
|
className?: string;
|
|
@@ -6501,7 +6524,7 @@ interface Props$16 {
|
|
|
6501
6524
|
disabled?: boolean;
|
|
6502
6525
|
onChange: (value: boolean) => void;
|
|
6503
6526
|
}
|
|
6504
|
-
declare class Checkbox extends Component<Props$
|
|
6527
|
+
declare class Checkbox extends Component<Props$18, SpreadsheetChildEnv> {
|
|
6505
6528
|
static template: string;
|
|
6506
6529
|
static props: {
|
|
6507
6530
|
label: {
|
|
@@ -6536,16 +6559,20 @@ declare class Checkbox extends Component<Props$16, SpreadsheetChildEnv> {
|
|
|
6536
6559
|
onChange(ev: InputEvent): void;
|
|
6537
6560
|
}
|
|
6538
6561
|
|
|
6539
|
-
interface Props$
|
|
6562
|
+
interface Props$17 {
|
|
6540
6563
|
class?: string;
|
|
6541
6564
|
}
|
|
6542
|
-
declare class Section extends Component<Props$
|
|
6565
|
+
declare class Section extends Component<Props$17, SpreadsheetChildEnv> {
|
|
6543
6566
|
static template: string;
|
|
6544
6567
|
static props: {
|
|
6545
6568
|
class: {
|
|
6546
6569
|
type: StringConstructor;
|
|
6547
6570
|
optional: boolean;
|
|
6548
6571
|
};
|
|
6572
|
+
title: {
|
|
6573
|
+
type: StringConstructor;
|
|
6574
|
+
optional: boolean;
|
|
6575
|
+
};
|
|
6549
6576
|
slots: ObjectConstructor;
|
|
6550
6577
|
};
|
|
6551
6578
|
}
|
|
@@ -6668,7 +6695,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
6668
6695
|
getIndex(rangeId: number | null): number | null;
|
|
6669
6696
|
}
|
|
6670
6697
|
|
|
6671
|
-
interface Props$
|
|
6698
|
+
interface Props$16 {
|
|
6672
6699
|
ranges: string[];
|
|
6673
6700
|
hasSingleRange?: boolean;
|
|
6674
6701
|
required?: boolean;
|
|
@@ -6691,7 +6718,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
6691
6718
|
* onSelectionChanged is called every time the input value
|
|
6692
6719
|
* changes.
|
|
6693
6720
|
*/
|
|
6694
|
-
declare class SelectionInput extends Component<Props$
|
|
6721
|
+
declare class SelectionInput extends Component<Props$16, SpreadsheetChildEnv> {
|
|
6695
6722
|
static template: string;
|
|
6696
6723
|
static props: {
|
|
6697
6724
|
ranges: ArrayConstructor;
|
|
@@ -6746,13 +6773,13 @@ declare class SelectionInput extends Component<Props$14, SpreadsheetChildEnv> {
|
|
|
6746
6773
|
confirm(): void;
|
|
6747
6774
|
}
|
|
6748
6775
|
|
|
6749
|
-
interface Props$
|
|
6776
|
+
interface Props$15 {
|
|
6750
6777
|
ranges: CustomizedDataSet[];
|
|
6751
6778
|
hasSingleRange?: boolean;
|
|
6752
6779
|
onSelectionChanged: (ranges: string[]) => void;
|
|
6753
6780
|
onSelectionConfirmed: () => void;
|
|
6754
6781
|
}
|
|
6755
|
-
declare class ChartDataSeries extends Component<Props$
|
|
6782
|
+
declare class ChartDataSeries extends Component<Props$15, SpreadsheetChildEnv> {
|
|
6756
6783
|
static template: string;
|
|
6757
6784
|
static components: {
|
|
6758
6785
|
SelectionInput: typeof SelectionInput;
|
|
@@ -6772,12 +6799,12 @@ declare class ChartDataSeries extends Component<Props$13, SpreadsheetChildEnv> {
|
|
|
6772
6799
|
get title(): string;
|
|
6773
6800
|
}
|
|
6774
6801
|
|
|
6775
|
-
interface Props$
|
|
6802
|
+
interface Props$14 {
|
|
6776
6803
|
messages: string[];
|
|
6777
6804
|
msgType: "warning" | "error" | "info";
|
|
6778
6805
|
singleBox?: boolean;
|
|
6779
6806
|
}
|
|
6780
|
-
declare class ValidationMessages extends Component<Props$
|
|
6807
|
+
declare class ValidationMessages extends Component<Props$14, SpreadsheetChildEnv> {
|
|
6781
6808
|
static template: string;
|
|
6782
6809
|
static props: {
|
|
6783
6810
|
messages: ArrayConstructor;
|
|
@@ -6791,10 +6818,10 @@ declare class ValidationMessages extends Component<Props$12, SpreadsheetChildEnv
|
|
|
6791
6818
|
get alertBoxes(): string[][];
|
|
6792
6819
|
}
|
|
6793
6820
|
|
|
6794
|
-
interface Props$
|
|
6821
|
+
interface Props$13 {
|
|
6795
6822
|
messages: string[];
|
|
6796
6823
|
}
|
|
6797
|
-
declare class ChartErrorSection extends Component<Props$
|
|
6824
|
+
declare class ChartErrorSection extends Component<Props$13, SpreadsheetChildEnv> {
|
|
6798
6825
|
static template: string;
|
|
6799
6826
|
static components: {
|
|
6800
6827
|
Section: typeof Section;
|
|
@@ -6808,7 +6835,7 @@ declare class ChartErrorSection extends Component<Props$11, SpreadsheetChildEnv>
|
|
|
6808
6835
|
};
|
|
6809
6836
|
}
|
|
6810
6837
|
|
|
6811
|
-
interface Props$
|
|
6838
|
+
interface Props$12 {
|
|
6812
6839
|
title?: string;
|
|
6813
6840
|
range: string;
|
|
6814
6841
|
isInvalid: boolean;
|
|
@@ -6821,7 +6848,7 @@ interface Props$10 {
|
|
|
6821
6848
|
onChange: (value: boolean) => void;
|
|
6822
6849
|
}>;
|
|
6823
6850
|
}
|
|
6824
|
-
declare class ChartLabelRange extends Component<Props$
|
|
6851
|
+
declare class ChartLabelRange extends Component<Props$12, SpreadsheetChildEnv> {
|
|
6825
6852
|
static template: string;
|
|
6826
6853
|
static components: {
|
|
6827
6854
|
SelectionInput: typeof SelectionInput;
|
|
@@ -6842,16 +6869,16 @@ declare class ChartLabelRange extends Component<Props$10, SpreadsheetChildEnv> {
|
|
|
6842
6869
|
optional: boolean;
|
|
6843
6870
|
};
|
|
6844
6871
|
};
|
|
6845
|
-
static defaultProps: Partial<Props$
|
|
6872
|
+
static defaultProps: Partial<Props$12>;
|
|
6846
6873
|
}
|
|
6847
6874
|
|
|
6848
|
-
interface Props
|
|
6875
|
+
interface Props$11 {
|
|
6849
6876
|
figureId: UID;
|
|
6850
|
-
definition:
|
|
6851
|
-
canUpdateChart: (figureId: UID, definition: Partial<
|
|
6852
|
-
updateChart: (figureId: UID, definition: Partial<
|
|
6877
|
+
definition: ChartWithDataSetDefinition;
|
|
6878
|
+
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
6879
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
6853
6880
|
}
|
|
6854
|
-
declare class GenericChartConfigPanel extends Component<Props
|
|
6881
|
+
declare class GenericChartConfigPanel extends Component<Props$11, SpreadsheetChildEnv> {
|
|
6855
6882
|
static template: string;
|
|
6856
6883
|
static components: {
|
|
6857
6884
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -6875,6 +6902,7 @@ declare class GenericChartConfigPanel extends Component<Props$$, SpreadsheetChil
|
|
|
6875
6902
|
StackedBarChart: string;
|
|
6876
6903
|
StackedLineChart: string;
|
|
6877
6904
|
StackedAreaChart: string;
|
|
6905
|
+
StackedColumnChart: string;
|
|
6878
6906
|
CumulativeData: string;
|
|
6879
6907
|
TreatLabelsAsText: string;
|
|
6880
6908
|
AggregatedChart: string;
|
|
@@ -6889,7 +6917,10 @@ declare class GenericChartConfigPanel extends Component<Props$$, SpreadsheetChil
|
|
|
6889
6917
|
GaugeRangeMinNaN: string;
|
|
6890
6918
|
EmptyGaugeRangeMax: string;
|
|
6891
6919
|
GaugeRangeMaxNaN: string;
|
|
6892
|
-
GaugeRangeMinBiggerThanRangeMax: string;
|
|
6920
|
+
GaugeRangeMinBiggerThanRangeMax: string; /**
|
|
6921
|
+
* Change the local labelRange. The model should be updated when the
|
|
6922
|
+
* button "confirm" is clicked
|
|
6923
|
+
*/
|
|
6893
6924
|
GaugeLowerInflectionPointNaN: string;
|
|
6894
6925
|
GaugeUpperInflectionPointNaN: string;
|
|
6895
6926
|
};
|
|
@@ -6926,14 +6957,18 @@ declare class GenericChartConfigPanel extends Component<Props$$, SpreadsheetChil
|
|
|
6926
6957
|
|
|
6927
6958
|
declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
6928
6959
|
static template: string;
|
|
6960
|
+
get stackedLabel(): string;
|
|
6929
6961
|
onUpdateStacked(stacked: boolean): void;
|
|
6930
|
-
onUpdateAggregated(aggregated: boolean): void;
|
|
6931
6962
|
}
|
|
6932
6963
|
|
|
6933
6964
|
declare class SidePanelCollapsible extends Component {
|
|
6934
6965
|
static template: string;
|
|
6935
6966
|
static props: {
|
|
6936
6967
|
slots: ObjectConstructor;
|
|
6968
|
+
title: {
|
|
6969
|
+
type: StringConstructor;
|
|
6970
|
+
optional: boolean;
|
|
6971
|
+
};
|
|
6937
6972
|
collapsedAtInit: {
|
|
6938
6973
|
type: BooleanConstructor;
|
|
6939
6974
|
optional: boolean;
|
|
@@ -6947,32 +6982,20 @@ declare class SidePanelCollapsible extends Component {
|
|
|
6947
6982
|
}
|
|
6948
6983
|
|
|
6949
6984
|
interface Choice$1 {
|
|
6950
|
-
value:
|
|
6985
|
+
value: string;
|
|
6951
6986
|
label: string;
|
|
6952
6987
|
}
|
|
6953
|
-
interface Props$
|
|
6988
|
+
interface Props$10 {
|
|
6954
6989
|
choices: Choice$1[];
|
|
6955
|
-
onChange: (value:
|
|
6990
|
+
onChange: (value: string) => void;
|
|
6956
6991
|
selectedValue: string;
|
|
6957
|
-
name: string;
|
|
6958
|
-
direction: "horizontal" | "vertical";
|
|
6959
6992
|
}
|
|
6960
|
-
declare class
|
|
6993
|
+
declare class BadgeSelection extends Component<Props$10, SpreadsheetChildEnv> {
|
|
6961
6994
|
static template: string;
|
|
6962
6995
|
static props: {
|
|
6963
6996
|
choices: ArrayConstructor;
|
|
6964
6997
|
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;
|
|
6998
|
+
selectedValue: StringConstructor;
|
|
6976
6999
|
};
|
|
6977
7000
|
}
|
|
6978
7001
|
|
|
@@ -7119,7 +7142,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7119
7142
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7120
7143
|
}
|
|
7121
7144
|
|
|
7122
|
-
interface Props
|
|
7145
|
+
interface Props$$ {
|
|
7123
7146
|
currentColor: string | undefined;
|
|
7124
7147
|
toggleColorPicker: () => void;
|
|
7125
7148
|
showColorPicker: boolean;
|
|
@@ -7130,7 +7153,7 @@ interface Props$Z {
|
|
|
7130
7153
|
dropdownMaxHeight?: Pixel;
|
|
7131
7154
|
class?: string;
|
|
7132
7155
|
}
|
|
7133
|
-
declare class ColorPickerWidget extends Component<Props
|
|
7156
|
+
declare class ColorPickerWidget extends Component<Props$$, SpreadsheetChildEnv> {
|
|
7134
7157
|
static template: string;
|
|
7135
7158
|
static props: {
|
|
7136
7159
|
currentColor: {
|
|
@@ -7168,60 +7191,7 @@ declare class ColorPickerWidget extends Component<Props$Z, SpreadsheetChildEnv>
|
|
|
7168
7191
|
get colorPickerAnchorRect(): Rect;
|
|
7169
7192
|
}
|
|
7170
7193
|
|
|
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 {
|
|
7194
|
+
interface Props$_ {
|
|
7225
7195
|
title?: string;
|
|
7226
7196
|
updateTitle: (title: string) => void;
|
|
7227
7197
|
name?: string;
|
|
@@ -7231,7 +7201,7 @@ interface Props$W {
|
|
|
7231
7201
|
updateColor?: (Color: any) => void;
|
|
7232
7202
|
style: TitleDesign;
|
|
7233
7203
|
}
|
|
7234
|
-
declare class ChartTitle extends Component<Props$
|
|
7204
|
+
declare class ChartTitle extends Component<Props$_, SpreadsheetChildEnv> {
|
|
7235
7205
|
static template: string;
|
|
7236
7206
|
static components: {
|
|
7237
7207
|
Section: typeof Section;
|
|
@@ -7294,13 +7264,13 @@ interface AxisDefinition {
|
|
|
7294
7264
|
id: string;
|
|
7295
7265
|
name: string;
|
|
7296
7266
|
}
|
|
7297
|
-
interface Props$
|
|
7267
|
+
interface Props$Z {
|
|
7298
7268
|
figureId: UID;
|
|
7299
|
-
definition:
|
|
7300
|
-
updateChart: (figureId: UID, definition: Partial<
|
|
7269
|
+
definition: ChartWithDataSetDefinition | WaterfallChartDefinition;
|
|
7270
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition | WaterfallChartDefinition>) => DispatchResult;
|
|
7301
7271
|
axesList: AxisDefinition[];
|
|
7302
7272
|
}
|
|
7303
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
7273
|
+
declare class AxisDesignEditor extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
7304
7274
|
static template: string;
|
|
7305
7275
|
static components: {
|
|
7306
7276
|
Section: typeof Section;
|
|
@@ -7330,12 +7300,46 @@ declare class AxisDesignEditor extends Component<Props$V, SpreadsheetChildEnv> {
|
|
|
7330
7300
|
updateAxisTitle(text: string): void;
|
|
7331
7301
|
}
|
|
7332
7302
|
|
|
7333
|
-
interface Props$
|
|
7303
|
+
interface Props$Y {
|
|
7304
|
+
currentColor?: string;
|
|
7305
|
+
onColorPicked: (color: string) => void;
|
|
7306
|
+
title?: string;
|
|
7307
|
+
}
|
|
7308
|
+
declare class RoundColorPicker extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
7309
|
+
static template: string;
|
|
7310
|
+
static components: {
|
|
7311
|
+
Section: typeof Section;
|
|
7312
|
+
ColorPicker: typeof ColorPicker;
|
|
7313
|
+
};
|
|
7314
|
+
static props: {
|
|
7315
|
+
currentColor: {
|
|
7316
|
+
type: StringConstructor;
|
|
7317
|
+
optional: boolean;
|
|
7318
|
+
};
|
|
7319
|
+
title: {
|
|
7320
|
+
type: StringConstructor;
|
|
7321
|
+
optional: boolean;
|
|
7322
|
+
};
|
|
7323
|
+
onColorPicked: FunctionConstructor;
|
|
7324
|
+
};
|
|
7325
|
+
colorPickerButtonRef: {
|
|
7326
|
+
el: HTMLElement | null;
|
|
7327
|
+
};
|
|
7328
|
+
private state;
|
|
7329
|
+
setup(): void;
|
|
7330
|
+
closePicker(): void;
|
|
7331
|
+
togglePicker(): void;
|
|
7332
|
+
onColorPicked(color: string): void;
|
|
7333
|
+
get colorPickerAnchorRect(): Rect;
|
|
7334
|
+
get buttonStyle(): string;
|
|
7335
|
+
}
|
|
7336
|
+
|
|
7337
|
+
interface Props$X {
|
|
7334
7338
|
figureId: UID;
|
|
7335
7339
|
definition: ChartDefinition;
|
|
7336
7340
|
updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
7337
7341
|
}
|
|
7338
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
7342
|
+
declare class GeneralDesignEditor extends Component<Props$X, SpreadsheetChildEnv> {
|
|
7339
7343
|
static template: string;
|
|
7340
7344
|
static components: {
|
|
7341
7345
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -7365,65 +7369,168 @@ declare class GeneralDesignEditor extends Component<Props$U, SpreadsheetChildEnv
|
|
|
7365
7369
|
updateChartTitleAlignment(align: "left" | "center" | "right"): void;
|
|
7366
7370
|
}
|
|
7367
7371
|
|
|
7368
|
-
interface Props$
|
|
7372
|
+
interface Props$W {
|
|
7369
7373
|
figureId: UID;
|
|
7370
|
-
definition:
|
|
7371
|
-
|
|
7372
|
-
updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
7374
|
+
definition: ChartWithDataSetDefinition;
|
|
7375
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7373
7376
|
}
|
|
7374
|
-
declare class
|
|
7377
|
+
declare class ChartLegend extends Component<Props$W, SpreadsheetChildEnv> {
|
|
7378
|
+
static template: string;
|
|
7379
|
+
static components: {
|
|
7380
|
+
Section: typeof Section;
|
|
7381
|
+
};
|
|
7382
|
+
static props: {
|
|
7383
|
+
figureId: StringConstructor;
|
|
7384
|
+
definition: ObjectConstructor;
|
|
7385
|
+
updateChart: FunctionConstructor;
|
|
7386
|
+
};
|
|
7387
|
+
updateLegendPosition(ev: any): void;
|
|
7388
|
+
}
|
|
7389
|
+
|
|
7390
|
+
interface Choice {
|
|
7391
|
+
value: unknown;
|
|
7392
|
+
label: string;
|
|
7393
|
+
}
|
|
7394
|
+
interface Props$V {
|
|
7395
|
+
choices: Choice[];
|
|
7396
|
+
onChange: (value: unknown) => void;
|
|
7397
|
+
selectedValue: string;
|
|
7398
|
+
name: string;
|
|
7399
|
+
direction: "horizontal" | "vertical";
|
|
7400
|
+
}
|
|
7401
|
+
declare class RadioSelection extends Component<Props$V, SpreadsheetChildEnv> {
|
|
7402
|
+
static template: string;
|
|
7403
|
+
static props: {
|
|
7404
|
+
choices: ArrayConstructor;
|
|
7405
|
+
onChange: FunctionConstructor;
|
|
7406
|
+
selectedValue: {
|
|
7407
|
+
optional: boolean;
|
|
7408
|
+
};
|
|
7409
|
+
name: StringConstructor;
|
|
7410
|
+
direction: {
|
|
7411
|
+
type: StringConstructor;
|
|
7412
|
+
optional: boolean;
|
|
7413
|
+
};
|
|
7414
|
+
};
|
|
7415
|
+
static defaultProps: {
|
|
7416
|
+
direction: string;
|
|
7417
|
+
};
|
|
7418
|
+
}
|
|
7419
|
+
|
|
7420
|
+
interface Props$U {
|
|
7421
|
+
figureId: UID;
|
|
7422
|
+
definition: ChartWithDataSetDefinition;
|
|
7423
|
+
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7424
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7425
|
+
}
|
|
7426
|
+
declare class SeriesDesignEditor extends Component<Props$U, SpreadsheetChildEnv> {
|
|
7375
7427
|
static template: string;
|
|
7376
7428
|
static components: {
|
|
7377
|
-
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
7378
7429
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
7379
7430
|
Section: typeof Section;
|
|
7380
|
-
AxisDesignEditor: typeof AxisDesignEditor;
|
|
7381
7431
|
RoundColorPicker: typeof RoundColorPicker;
|
|
7432
|
+
};
|
|
7433
|
+
static props: {
|
|
7434
|
+
figureId: StringConstructor;
|
|
7435
|
+
definition: ObjectConstructor;
|
|
7436
|
+
updateChart: FunctionConstructor;
|
|
7437
|
+
canUpdateChart: FunctionConstructor;
|
|
7438
|
+
slots: {
|
|
7439
|
+
type: ObjectConstructor;
|
|
7440
|
+
optional: boolean;
|
|
7441
|
+
};
|
|
7442
|
+
};
|
|
7443
|
+
protected state: {
|
|
7444
|
+
index: number;
|
|
7445
|
+
};
|
|
7446
|
+
getDataSeries(): (string | undefined)[];
|
|
7447
|
+
updateSerieEditor(ev: any): void;
|
|
7448
|
+
updateDataSeriesColor(color: string): void;
|
|
7449
|
+
getDataSerieColor(): "" | Color;
|
|
7450
|
+
updateDataSeriesLabel(ev: any): void;
|
|
7451
|
+
getDataSerieLabel(): string | undefined;
|
|
7452
|
+
}
|
|
7453
|
+
|
|
7454
|
+
interface Props$T {
|
|
7455
|
+
figureId: UID;
|
|
7456
|
+
definition: ChartWithDataSetDefinition;
|
|
7457
|
+
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7458
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7459
|
+
}
|
|
7460
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$T, SpreadsheetChildEnv> {
|
|
7461
|
+
static template: string;
|
|
7462
|
+
static components: {
|
|
7463
|
+
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
7382
7464
|
Checkbox: typeof Checkbox;
|
|
7383
7465
|
RadioSelection: typeof RadioSelection;
|
|
7466
|
+
Section: typeof Section;
|
|
7467
|
+
RoundColorPicker: typeof RoundColorPicker;
|
|
7384
7468
|
};
|
|
7385
7469
|
static props: {
|
|
7386
7470
|
figureId: StringConstructor;
|
|
7387
7471
|
definition: ObjectConstructor;
|
|
7388
7472
|
canUpdateChart: FunctionConstructor;
|
|
7389
7473
|
updateChart: FunctionConstructor;
|
|
7474
|
+
slots: {
|
|
7475
|
+
type: ObjectConstructor;
|
|
7476
|
+
optional: boolean;
|
|
7477
|
+
};
|
|
7390
7478
|
};
|
|
7391
7479
|
axisChoices: {
|
|
7392
7480
|
value: string;
|
|
7393
7481
|
label: string;
|
|
7394
7482
|
}[];
|
|
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";
|
|
7483
|
+
updateDataSeriesAxis(index: number, axis: "left" | "right"): void;
|
|
7484
|
+
getDataSerieAxis(index: number): "left" | "right";
|
|
7406
7485
|
get canHaveTwoVerticalAxis(): boolean;
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
updateShowValues(showValues: boolean): void;
|
|
7410
|
-
toggleDataTrend(display: boolean): void;
|
|
7411
|
-
getTrendLineConfiguration(): TrendConfiguration | undefined;
|
|
7486
|
+
toggleDataTrend(index: number, display: boolean): void;
|
|
7487
|
+
getTrendLineConfiguration(index: number): TrendConfiguration | undefined;
|
|
7412
7488
|
getTrendType(config: TrendConfiguration): "linear" | "" | TrendType | undefined;
|
|
7413
|
-
onChangeTrendType(ev: InputEvent): void;
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7489
|
+
onChangeTrendType(index: any, ev: InputEvent): void;
|
|
7490
|
+
getPolynomialDegrees(index: number): number[];
|
|
7491
|
+
onChangePolynomialDegree(index: number, ev: InputEvent): void;
|
|
7492
|
+
getMaxPolynomialDegree(index: any): number;
|
|
7493
|
+
get defaultWindowSize(): number;
|
|
7494
|
+
onChangeMovingAverageWindow(index: number, ev: InputEvent): void;
|
|
7495
|
+
getDataSerieColor(index: number): "" | Color;
|
|
7496
|
+
getTrendLineColor(index: number): string;
|
|
7497
|
+
updateTrendLineColor(index: number, color: Color): void;
|
|
7498
|
+
updateTrendLineValue(index: number, config: any): void;
|
|
7418
7499
|
}
|
|
7419
7500
|
|
|
7420
7501
|
interface Props$S {
|
|
7502
|
+
figureId: UID;
|
|
7503
|
+
definition: ChartWithDataSetDefinition;
|
|
7504
|
+
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7505
|
+
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7506
|
+
}
|
|
7507
|
+
declare class ChartWithAxisDesignPanel<P extends Props$S = Props$S> extends Component<P, SpreadsheetChildEnv> {
|
|
7508
|
+
static template: string;
|
|
7509
|
+
static components: {
|
|
7510
|
+
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
7511
|
+
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
7512
|
+
Section: typeof Section;
|
|
7513
|
+
AxisDesignEditor: typeof AxisDesignEditor;
|
|
7514
|
+
Checkbox: typeof Checkbox;
|
|
7515
|
+
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
7516
|
+
ChartLegend: typeof ChartLegend;
|
|
7517
|
+
};
|
|
7518
|
+
static props: {
|
|
7519
|
+
figureId: StringConstructor;
|
|
7520
|
+
definition: ObjectConstructor;
|
|
7521
|
+
canUpdateChart: FunctionConstructor;
|
|
7522
|
+
updateChart: FunctionConstructor;
|
|
7523
|
+
};
|
|
7524
|
+
get axesList(): AxisDefinition[];
|
|
7525
|
+
}
|
|
7526
|
+
|
|
7527
|
+
interface Props$R {
|
|
7421
7528
|
figureId: UID;
|
|
7422
7529
|
definition: GaugeChartDefinition;
|
|
7423
7530
|
canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7424
7531
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7425
7532
|
}
|
|
7426
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
7533
|
+
declare class GaugeChartConfigPanel extends Component<Props$R, SpreadsheetChildEnv> {
|
|
7427
7534
|
static template: string;
|
|
7428
7535
|
static components: {
|
|
7429
7536
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -7448,13 +7555,13 @@ interface PanelState {
|
|
|
7448
7555
|
sectionRuleDispatchResult?: DispatchResult;
|
|
7449
7556
|
sectionRule: SectionRule;
|
|
7450
7557
|
}
|
|
7451
|
-
interface Props$
|
|
7558
|
+
interface Props$Q {
|
|
7452
7559
|
figureId: UID;
|
|
7453
7560
|
definition: GaugeChartDefinition;
|
|
7454
7561
|
canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7455
7562
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7456
7563
|
}
|
|
7457
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
7564
|
+
declare class GaugeChartDesignPanel extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
7458
7565
|
static template: string;
|
|
7459
7566
|
static components: {
|
|
7460
7567
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -7496,17 +7603,16 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
7496
7603
|
}[];
|
|
7497
7604
|
onUpdateLabelsAsText(labelsAsText: boolean): void;
|
|
7498
7605
|
onUpdateStacked(stacked: boolean): void;
|
|
7499
|
-
onUpdateAggregated(aggregated: boolean): void;
|
|
7500
7606
|
onUpdateCumulative(cumulative: boolean): void;
|
|
7501
7607
|
}
|
|
7502
7608
|
|
|
7503
|
-
interface Props$
|
|
7609
|
+
interface Props$P {
|
|
7504
7610
|
figureId: UID;
|
|
7505
7611
|
definition: ScorecardChartDefinition;
|
|
7506
7612
|
canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7507
7613
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7508
7614
|
}
|
|
7509
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
7615
|
+
declare class ScorecardChartConfigPanel extends Component<Props$P, SpreadsheetChildEnv> {
|
|
7510
7616
|
static template: string;
|
|
7511
7617
|
static components: {
|
|
7512
7618
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7535,13 +7641,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$Q, SpreadsheetCh
|
|
|
7535
7641
|
}
|
|
7536
7642
|
|
|
7537
7643
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
7538
|
-
interface Props$
|
|
7644
|
+
interface Props$O {
|
|
7539
7645
|
figureId: UID;
|
|
7540
7646
|
definition: ScorecardChartDefinition;
|
|
7541
7647
|
canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7542
7648
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7543
7649
|
}
|
|
7544
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
7650
|
+
declare class ScorecardChartDesignPanel extends Component<Props$O, SpreadsheetChildEnv> {
|
|
7545
7651
|
static template: string;
|
|
7546
7652
|
static components: {
|
|
7547
7653
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -7686,26 +7792,30 @@ interface FunctionContext {
|
|
|
7686
7792
|
*
|
|
7687
7793
|
* The information added are:
|
|
7688
7794
|
* - start, end and length of each token
|
|
7689
|
-
* -
|
|
7690
|
-
* -
|
|
7691
|
-
* -
|
|
7692
|
-
* -
|
|
7795
|
+
* - parenthesesCode (a code indicating the position of the token in the parentheses tree)
|
|
7796
|
+
* - functionContext (only for tokens surrounded by a function)
|
|
7797
|
+
* - color (the base color of the token, without fading modification)
|
|
7798
|
+
* - isBlurred (indicates whether the text should be highlighted or not, useful to know if the token matches the same formula as the cursor token)
|
|
7799
|
+
* - isParenthesisLinkedToCursor (Useful for highlighting tokens related to the current token, such as matching parentheses)
|
|
7693
7800
|
*/
|
|
7694
7801
|
interface EnrichedToken extends Token {
|
|
7695
7802
|
start: number;
|
|
7696
7803
|
end: number;
|
|
7697
7804
|
length: number;
|
|
7698
|
-
|
|
7805
|
+
parenthesesCode?: string;
|
|
7699
7806
|
functionContext?: FunctionContext;
|
|
7807
|
+
color?: Color;
|
|
7808
|
+
isBlurred?: boolean;
|
|
7809
|
+
isParenthesisLinkedToCursor?: boolean;
|
|
7700
7810
|
}
|
|
7701
7811
|
|
|
7702
|
-
interface Props$
|
|
7812
|
+
interface Props$N {
|
|
7703
7813
|
proposals: AutoCompleteProposal[];
|
|
7704
7814
|
selectedIndex: number | undefined;
|
|
7705
7815
|
onValueSelected: (value: string) => void;
|
|
7706
7816
|
onValueHovered: (index: string) => void;
|
|
7707
7817
|
}
|
|
7708
|
-
declare class TextValueProvider extends Component<Props$
|
|
7818
|
+
declare class TextValueProvider extends Component<Props$N> {
|
|
7709
7819
|
static template: string;
|
|
7710
7820
|
static props: {
|
|
7711
7821
|
proposals: ArrayConstructor;
|
|
@@ -7791,22 +7901,33 @@ declare class ContentEditableHelper {
|
|
|
7791
7901
|
getText(): string;
|
|
7792
7902
|
}
|
|
7793
7903
|
|
|
7794
|
-
interface Props$
|
|
7904
|
+
interface Props$M {
|
|
7795
7905
|
functionName: string;
|
|
7796
7906
|
functionDescription: FunctionDescription;
|
|
7797
7907
|
argToFocus: number;
|
|
7798
7908
|
}
|
|
7799
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
7909
|
+
declare class FunctionDescriptionProvider extends Component<Props$M, SpreadsheetChildEnv> {
|
|
7800
7910
|
static template: string;
|
|
7801
7911
|
static props: {
|
|
7802
7912
|
functionName: StringConstructor;
|
|
7803
7913
|
functionDescription: ObjectConstructor;
|
|
7804
7914
|
argToFocus: NumberConstructor;
|
|
7805
7915
|
};
|
|
7806
|
-
getContext(): Props$
|
|
7916
|
+
getContext(): Props$M;
|
|
7807
7917
|
get formulaArgSeparator(): string;
|
|
7808
7918
|
}
|
|
7809
7919
|
|
|
7920
|
+
declare const tokenColors: {
|
|
7921
|
+
readonly OPERATOR: "#3da4ab";
|
|
7922
|
+
readonly NUMBER: "#02c39a";
|
|
7923
|
+
readonly STRING: "#00a82d";
|
|
7924
|
+
readonly FUNCTION: Color;
|
|
7925
|
+
readonly DEBUGGER: "#3da4ab";
|
|
7926
|
+
readonly LEFT_PAREN: Color;
|
|
7927
|
+
readonly RIGHT_PAREN: Color;
|
|
7928
|
+
readonly ARG_SEPARATOR: Color;
|
|
7929
|
+
readonly ORPHAN_RIGHT_PAREN: "#ff0000";
|
|
7930
|
+
};
|
|
7810
7931
|
interface ComposerSelection {
|
|
7811
7932
|
start: number;
|
|
7812
7933
|
end: number;
|
|
@@ -7898,6 +8019,19 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
7898
8019
|
* The cursor is then set at the end of the text.
|
|
7899
8020
|
*/
|
|
7900
8021
|
private insertText;
|
|
8022
|
+
private updateTokenColor;
|
|
8023
|
+
private getTokenColor;
|
|
8024
|
+
private rangeColor;
|
|
8025
|
+
/**
|
|
8026
|
+
* Compute for each token if it is part of the same
|
|
8027
|
+
* formula as the current selector token.
|
|
8028
|
+
* If no specific formula found for the current selected
|
|
8029
|
+
* token, it assumes all tokens are part of the formula
|
|
8030
|
+
* context.
|
|
8031
|
+
*/
|
|
8032
|
+
private computeFormulaCursorContext;
|
|
8033
|
+
private getParenthesesCodeAfterCursor;
|
|
8034
|
+
private computeParenthesisRelatedToCursor;
|
|
7901
8035
|
private updateRangeColor;
|
|
7902
8036
|
/**
|
|
7903
8037
|
* Highlight all ranges that can be found in the composer content.
|
|
@@ -7940,17 +8074,6 @@ type HtmlContent = {
|
|
|
7940
8074
|
color?: Color;
|
|
7941
8075
|
class?: string;
|
|
7942
8076
|
};
|
|
7943
|
-
declare const tokenColors: {
|
|
7944
|
-
readonly OPERATOR: "#3da4ab";
|
|
7945
|
-
readonly NUMBER: "#02c39a";
|
|
7946
|
-
readonly STRING: "#00a82d";
|
|
7947
|
-
readonly FUNCTION: "#4a4e4d";
|
|
7948
|
-
readonly DEBUGGER: "#3da4ab";
|
|
7949
|
-
readonly LEFT_PAREN: "#4a4e4d";
|
|
7950
|
-
readonly RIGHT_PAREN: "#4a4e4d";
|
|
7951
|
-
readonly ARG_SEPARATOR: "#4a4e4d";
|
|
7952
|
-
readonly MATCHING_PAREN: "#000000";
|
|
7953
|
-
};
|
|
7954
8077
|
interface CellComposerProps {
|
|
7955
8078
|
focus: ComposerFocusType;
|
|
7956
8079
|
inputStyle?: string;
|
|
@@ -8077,14 +8200,13 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8077
8200
|
* Get the HTML content corresponding to the current composer token, divided by lines.
|
|
8078
8201
|
*/
|
|
8079
8202
|
private getContentLines;
|
|
8080
|
-
private
|
|
8203
|
+
private getHtmlContentFromTokens;
|
|
8081
8204
|
/**
|
|
8082
8205
|
* Split an array of HTMLContents into lines. Each NEWLINE character encountered will create a new
|
|
8083
8206
|
* line. Contents can be split into multiple parts if they contain multiple NEWLINE characters.
|
|
8084
8207
|
*/
|
|
8085
8208
|
private splitHtmlContentIntoLines;
|
|
8086
8209
|
private isContentEmpty;
|
|
8087
|
-
private rangeColor;
|
|
8088
8210
|
/**
|
|
8089
8211
|
* Compute the state of the composer from the tokenAtCursor.
|
|
8090
8212
|
* If the token is a function or symbol (that isn't a cell/range reference) we have to initialize
|
|
@@ -8169,10 +8291,10 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
8169
8291
|
private setComposerContent;
|
|
8170
8292
|
}
|
|
8171
8293
|
|
|
8172
|
-
interface Props$
|
|
8294
|
+
interface Props$L {
|
|
8173
8295
|
figure: Figure;
|
|
8174
8296
|
}
|
|
8175
|
-
declare class ChartJsComponent extends Component<Props$
|
|
8297
|
+
declare class ChartJsComponent extends Component<Props$L, SpreadsheetChildEnv> {
|
|
8176
8298
|
static template: string;
|
|
8177
8299
|
static props: {
|
|
8178
8300
|
figure: ObjectConstructor;
|
|
@@ -8188,10 +8310,10 @@ declare class ChartJsComponent extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
8188
8310
|
private updateChartJs;
|
|
8189
8311
|
}
|
|
8190
8312
|
|
|
8191
|
-
interface Props$
|
|
8313
|
+
interface Props$K {
|
|
8192
8314
|
figure: Figure;
|
|
8193
8315
|
}
|
|
8194
|
-
declare class ScorecardChart extends Component<Props$
|
|
8316
|
+
declare class ScorecardChart extends Component<Props$K, SpreadsheetChildEnv> {
|
|
8195
8317
|
static template: string;
|
|
8196
8318
|
static props: {
|
|
8197
8319
|
figure: ObjectConstructor;
|
|
@@ -8204,7 +8326,7 @@ declare class ScorecardChart extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
8204
8326
|
}
|
|
8205
8327
|
|
|
8206
8328
|
type MenuItemOrSeparator = Action | "separator";
|
|
8207
|
-
interface Props$
|
|
8329
|
+
interface Props$J {
|
|
8208
8330
|
position: DOMCoordinates;
|
|
8209
8331
|
menuItems: Action[];
|
|
8210
8332
|
depth: number;
|
|
@@ -8223,7 +8345,7 @@ interface MenuState {
|
|
|
8223
8345
|
menuItems: Action[];
|
|
8224
8346
|
isHoveringChild?: boolean;
|
|
8225
8347
|
}
|
|
8226
|
-
declare class Menu extends Component<Props$
|
|
8348
|
+
declare class Menu extends Component<Props$J, SpreadsheetChildEnv> {
|
|
8227
8349
|
static template: string;
|
|
8228
8350
|
static props: {
|
|
8229
8351
|
position: ObjectConstructor;
|
|
@@ -8299,14 +8421,14 @@ declare class Menu extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
8299
8421
|
}
|
|
8300
8422
|
|
|
8301
8423
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
8302
|
-
interface Props$
|
|
8424
|
+
interface Props$I {
|
|
8303
8425
|
figure: Figure;
|
|
8304
8426
|
style: string;
|
|
8305
8427
|
onFigureDeleted: () => void;
|
|
8306
8428
|
onMouseDown: (ev: MouseEvent) => void;
|
|
8307
8429
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
8308
8430
|
}
|
|
8309
|
-
declare class FigureComponent extends Component<Props$
|
|
8431
|
+
declare class FigureComponent extends Component<Props$I, SpreadsheetChildEnv> {
|
|
8310
8432
|
static template: string;
|
|
8311
8433
|
static props: {
|
|
8312
8434
|
figure: ObjectConstructor;
|
|
@@ -8355,11 +8477,11 @@ declare class FigureComponent extends Component<Props$J, SpreadsheetChildEnv> {
|
|
|
8355
8477
|
private openContextMenu;
|
|
8356
8478
|
}
|
|
8357
8479
|
|
|
8358
|
-
interface Props$
|
|
8480
|
+
interface Props$H {
|
|
8359
8481
|
figure: Figure;
|
|
8360
8482
|
onFigureDeleted: () => void;
|
|
8361
8483
|
}
|
|
8362
|
-
declare class ChartFigure extends Component<Props$
|
|
8484
|
+
declare class ChartFigure extends Component<Props$H, SpreadsheetChildEnv> {
|
|
8363
8485
|
static template: string;
|
|
8364
8486
|
static props: {
|
|
8365
8487
|
figure: ObjectConstructor;
|
|
@@ -8371,7 +8493,7 @@ declare class ChartFigure extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
8371
8493
|
get chartComponent(): new (...args: any) => Component;
|
|
8372
8494
|
}
|
|
8373
8495
|
|
|
8374
|
-
interface Props$
|
|
8496
|
+
interface Props$G {
|
|
8375
8497
|
isVisible: boolean;
|
|
8376
8498
|
position: Position;
|
|
8377
8499
|
}
|
|
@@ -8383,7 +8505,7 @@ interface State$8 {
|
|
|
8383
8505
|
position: Position;
|
|
8384
8506
|
handler: boolean;
|
|
8385
8507
|
}
|
|
8386
|
-
declare class Autofill extends Component<Props$
|
|
8508
|
+
declare class Autofill extends Component<Props$G, SpreadsheetChildEnv> {
|
|
8387
8509
|
static template: string;
|
|
8388
8510
|
static props: {
|
|
8389
8511
|
position: ObjectConstructor;
|
|
@@ -8417,7 +8539,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
8417
8539
|
get tagStyle(): string;
|
|
8418
8540
|
}
|
|
8419
8541
|
|
|
8420
|
-
interface Props$
|
|
8542
|
+
interface Props$F {
|
|
8421
8543
|
gridDims: DOMDimension;
|
|
8422
8544
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
8423
8545
|
}
|
|
@@ -8425,7 +8547,7 @@ interface Props$G {
|
|
|
8425
8547
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
8426
8548
|
* It also applies the style of the cell to the composer input.
|
|
8427
8549
|
*/
|
|
8428
|
-
declare class GridComposer extends Component<Props$
|
|
8550
|
+
declare class GridComposer extends Component<Props$F, SpreadsheetChildEnv> {
|
|
8429
8551
|
static template: string;
|
|
8430
8552
|
static props: {
|
|
8431
8553
|
gridDims: ObjectConstructor;
|
|
@@ -8483,10 +8605,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
|
|
|
8483
8605
|
isPositionVisible(position: CellPosition): boolean;
|
|
8484
8606
|
}
|
|
8485
8607
|
|
|
8486
|
-
interface Props$
|
|
8608
|
+
interface Props$E {
|
|
8487
8609
|
cellPosition: CellPosition;
|
|
8488
8610
|
}
|
|
8489
|
-
declare class DataValidationCheckbox extends Component<Props$
|
|
8611
|
+
declare class DataValidationCheckbox extends Component<Props$E, SpreadsheetChildEnv> {
|
|
8490
8612
|
static template: string;
|
|
8491
8613
|
static components: {
|
|
8492
8614
|
Checkbox: typeof Checkbox;
|
|
@@ -8499,10 +8621,10 @@ declare class DataValidationCheckbox extends Component<Props$F, SpreadsheetChild
|
|
|
8499
8621
|
get isDisabled(): boolean;
|
|
8500
8622
|
}
|
|
8501
8623
|
|
|
8502
|
-
interface Props$
|
|
8624
|
+
interface Props$D {
|
|
8503
8625
|
cellPosition: CellPosition;
|
|
8504
8626
|
}
|
|
8505
|
-
declare class DataValidationListIcon extends Component<Props$
|
|
8627
|
+
declare class DataValidationListIcon extends Component<Props$D, SpreadsheetChildEnv> {
|
|
8506
8628
|
static template: string;
|
|
8507
8629
|
static props: {
|
|
8508
8630
|
cellPosition: ObjectConstructor;
|
|
@@ -8532,7 +8654,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
8532
8654
|
}
|
|
8533
8655
|
|
|
8534
8656
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
8535
|
-
interface Props$
|
|
8657
|
+
interface Props$C {
|
|
8536
8658
|
onFigureDeleted: () => void;
|
|
8537
8659
|
}
|
|
8538
8660
|
interface Container {
|
|
@@ -8611,7 +8733,7 @@ interface DndState {
|
|
|
8611
8733
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
8612
8734
|
*
|
|
8613
8735
|
*/
|
|
8614
|
-
declare class FiguresContainer extends Component<Props$
|
|
8736
|
+
declare class FiguresContainer extends Component<Props$C, SpreadsheetChildEnv> {
|
|
8615
8737
|
static template: string;
|
|
8616
8738
|
static props: {
|
|
8617
8739
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -8666,10 +8788,10 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
8666
8788
|
private computePopoverAnchorRect;
|
|
8667
8789
|
}
|
|
8668
8790
|
|
|
8669
|
-
interface Props$
|
|
8791
|
+
interface Props$B {
|
|
8670
8792
|
cellPosition: CellPosition;
|
|
8671
8793
|
}
|
|
8672
|
-
declare class FilterIcon extends Component<Props$
|
|
8794
|
+
declare class FilterIcon extends Component<Props$B, SpreadsheetChildEnv> {
|
|
8673
8795
|
static template: string;
|
|
8674
8796
|
static props: {
|
|
8675
8797
|
cellPosition: ObjectConstructor;
|
|
@@ -8691,10 +8813,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
|
|
|
8691
8813
|
getFilterHeadersPositions(): CellPosition[];
|
|
8692
8814
|
}
|
|
8693
8815
|
|
|
8694
|
-
interface Props$
|
|
8816
|
+
interface Props$A {
|
|
8695
8817
|
focusGrid: () => void;
|
|
8696
8818
|
}
|
|
8697
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
8819
|
+
declare class GridAddRowsFooter extends Component<Props$A, SpreadsheetChildEnv> {
|
|
8698
8820
|
static template: string;
|
|
8699
8821
|
static props: {
|
|
8700
8822
|
focusGrid: FunctionConstructor;
|
|
@@ -8718,7 +8840,7 @@ declare class GridAddRowsFooter extends Component<Props$B, SpreadsheetChildEnv>
|
|
|
8718
8840
|
private onExternalClick;
|
|
8719
8841
|
}
|
|
8720
8842
|
|
|
8721
|
-
interface Props$
|
|
8843
|
+
interface Props$z {
|
|
8722
8844
|
onCellHovered: (position: Partial<Position$1>) => void;
|
|
8723
8845
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
8724
8846
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers) => void;
|
|
@@ -8728,7 +8850,7 @@ interface Props$A {
|
|
|
8728
8850
|
gridOverlayDimensions: string;
|
|
8729
8851
|
onFigureDeleted: () => void;
|
|
8730
8852
|
}
|
|
8731
|
-
declare class GridOverlay extends Component<Props$
|
|
8853
|
+
declare class GridOverlay extends Component<Props$z, SpreadsheetChildEnv> {
|
|
8732
8854
|
static template: string;
|
|
8733
8855
|
static props: {
|
|
8734
8856
|
onCellHovered: {
|
|
@@ -8786,12 +8908,12 @@ declare class GridOverlay extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
8786
8908
|
private getCartesianCoordinates;
|
|
8787
8909
|
}
|
|
8788
8910
|
|
|
8789
|
-
interface Props$
|
|
8911
|
+
interface Props$y {
|
|
8790
8912
|
gridRect: Rect;
|
|
8791
8913
|
onClosePopover: () => void;
|
|
8792
8914
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
8793
8915
|
}
|
|
8794
|
-
declare class GridPopover extends Component<Props$
|
|
8916
|
+
declare class GridPopover extends Component<Props$y, SpreadsheetChildEnv> {
|
|
8795
8917
|
static template: string;
|
|
8796
8918
|
static props: {
|
|
8797
8919
|
onClosePopover: FunctionConstructor;
|
|
@@ -8934,13 +9056,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
8934
9056
|
}
|
|
8935
9057
|
|
|
8936
9058
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
8937
|
-
interface Props$
|
|
9059
|
+
interface Props$x {
|
|
8938
9060
|
zone: Zone;
|
|
8939
9061
|
orientation: Orientation$1;
|
|
8940
9062
|
isMoving: boolean;
|
|
8941
9063
|
onMoveHighlight: (x: Pixel, y: Pixel) => void;
|
|
8942
9064
|
}
|
|
8943
|
-
declare class Border extends Component<Props$
|
|
9065
|
+
declare class Border extends Component<Props$x, SpreadsheetChildEnv> {
|
|
8944
9066
|
static template: string;
|
|
8945
9067
|
static props: {
|
|
8946
9068
|
zone: ObjectConstructor;
|
|
@@ -8953,14 +9075,14 @@ declare class Border extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
8953
9075
|
}
|
|
8954
9076
|
|
|
8955
9077
|
type Orientation = "nw" | "ne" | "sw" | "se";
|
|
8956
|
-
interface Props$
|
|
9078
|
+
interface Props$w {
|
|
8957
9079
|
zone: Zone;
|
|
8958
9080
|
color: Color;
|
|
8959
9081
|
orientation: Orientation;
|
|
8960
9082
|
isResizing: boolean;
|
|
8961
9083
|
onResizeHighlight: (isLeft: boolean, isRight: boolean) => void;
|
|
8962
9084
|
}
|
|
8963
|
-
declare class Corner extends Component<Props$
|
|
9085
|
+
declare class Corner extends Component<Props$w, SpreadsheetChildEnv> {
|
|
8964
9086
|
static template: string;
|
|
8965
9087
|
static props: {
|
|
8966
9088
|
zone: ObjectConstructor;
|
|
@@ -8975,14 +9097,14 @@ declare class Corner extends Component<Props$x, SpreadsheetChildEnv> {
|
|
|
8975
9097
|
onMouseDown(ev: MouseEvent): void;
|
|
8976
9098
|
}
|
|
8977
9099
|
|
|
8978
|
-
interface Props$
|
|
9100
|
+
interface Props$v {
|
|
8979
9101
|
zone: Zone;
|
|
8980
9102
|
color: Color;
|
|
8981
9103
|
}
|
|
8982
9104
|
interface HighlightState {
|
|
8983
9105
|
shiftingMode: "isMoving" | "isResizing" | "none";
|
|
8984
9106
|
}
|
|
8985
|
-
declare class Highlight extends Component<Props$
|
|
9107
|
+
declare class Highlight extends Component<Props$v, SpreadsheetChildEnv> {
|
|
8986
9108
|
static template: string;
|
|
8987
9109
|
static props: {
|
|
8988
9110
|
zone: ObjectConstructor;
|
|
@@ -8999,7 +9121,7 @@ declare class Highlight extends Component<Props$w, SpreadsheetChildEnv> {
|
|
|
8999
9121
|
|
|
9000
9122
|
type ScrollDirection = "horizontal" | "vertical";
|
|
9001
9123
|
|
|
9002
|
-
interface Props$
|
|
9124
|
+
interface Props$u {
|
|
9003
9125
|
width: Pixel;
|
|
9004
9126
|
height: Pixel;
|
|
9005
9127
|
direction: ScrollDirection;
|
|
@@ -9007,7 +9129,7 @@ interface Props$v {
|
|
|
9007
9129
|
offset: Pixel;
|
|
9008
9130
|
onScroll: (offset: Pixel) => void;
|
|
9009
9131
|
}
|
|
9010
|
-
declare class ScrollBar extends Component<Props$
|
|
9132
|
+
declare class ScrollBar extends Component<Props$u> {
|
|
9011
9133
|
static props: {
|
|
9012
9134
|
width: {
|
|
9013
9135
|
type: NumberConstructor;
|
|
@@ -9035,10 +9157,10 @@ declare class ScrollBar extends Component<Props$v> {
|
|
|
9035
9157
|
onScroll(ev: any): void;
|
|
9036
9158
|
}
|
|
9037
9159
|
|
|
9038
|
-
interface Props$
|
|
9160
|
+
interface Props$t {
|
|
9039
9161
|
leftOffset: number;
|
|
9040
9162
|
}
|
|
9041
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
9163
|
+
declare class HorizontalScrollBar extends Component<Props$t, SpreadsheetChildEnv> {
|
|
9042
9164
|
static props: {
|
|
9043
9165
|
leftOffset: {
|
|
9044
9166
|
type: NumberConstructor;
|
|
@@ -9064,10 +9186,10 @@ declare class HorizontalScrollBar extends Component<Props$u, SpreadsheetChildEnv
|
|
|
9064
9186
|
onScroll(offset: any): void;
|
|
9065
9187
|
}
|
|
9066
9188
|
|
|
9067
|
-
interface Props$
|
|
9189
|
+
interface Props$s {
|
|
9068
9190
|
topOffset: number;
|
|
9069
9191
|
}
|
|
9070
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
9192
|
+
declare class VerticalScrollBar extends Component<Props$s, SpreadsheetChildEnv> {
|
|
9071
9193
|
static props: {
|
|
9072
9194
|
topOffset: {
|
|
9073
9195
|
type: NumberConstructor;
|
|
@@ -9093,13 +9215,13 @@ declare class VerticalScrollBar extends Component<Props$t, SpreadsheetChildEnv>
|
|
|
9093
9215
|
onScroll(offset: any): void;
|
|
9094
9216
|
}
|
|
9095
9217
|
|
|
9096
|
-
interface Props$
|
|
9218
|
+
interface Props$r {
|
|
9097
9219
|
table: Table;
|
|
9098
9220
|
}
|
|
9099
9221
|
interface State$7 {
|
|
9100
9222
|
highlightZone: Zone | undefined;
|
|
9101
9223
|
}
|
|
9102
|
-
declare class TableResizer extends Component<Props$
|
|
9224
|
+
declare class TableResizer extends Component<Props$r, SpreadsheetChildEnv> {
|
|
9103
9225
|
static template: string;
|
|
9104
9226
|
static props: {
|
|
9105
9227
|
table: ObjectConstructor;
|
|
@@ -9131,10 +9253,10 @@ declare class HoveredCellStore extends SpreadsheetStore {
|
|
|
9131
9253
|
* - a vertical resizer (same, for rows)
|
|
9132
9254
|
*/
|
|
9133
9255
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
9134
|
-
interface Props$
|
|
9256
|
+
interface Props$q {
|
|
9135
9257
|
exposeFocus: (focus: () => void) => void;
|
|
9136
9258
|
}
|
|
9137
|
-
declare class Grid extends Component<Props$
|
|
9259
|
+
declare class Grid extends Component<Props$q, SpreadsheetChildEnv> {
|
|
9138
9260
|
static template: string;
|
|
9139
9261
|
static props: {
|
|
9140
9262
|
exposeFocus: FunctionConstructor;
|
|
@@ -9243,7 +9365,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
9243
9365
|
private getChartDefinitionFromContextCreation;
|
|
9244
9366
|
}
|
|
9245
9367
|
|
|
9246
|
-
interface Props$
|
|
9368
|
+
interface Props$p {
|
|
9247
9369
|
figureId: UID;
|
|
9248
9370
|
chartPanelStore: MainChartPanelStore;
|
|
9249
9371
|
}
|
|
@@ -9251,7 +9373,7 @@ interface ChartTypePickerState {
|
|
|
9251
9373
|
popoverProps: PopoverProps | undefined;
|
|
9252
9374
|
popoverStyle: string;
|
|
9253
9375
|
}
|
|
9254
|
-
declare class ChartTypePicker extends Component<Props$
|
|
9376
|
+
declare class ChartTypePicker extends Component<Props$p, SpreadsheetChildEnv> {
|
|
9255
9377
|
static template: string;
|
|
9256
9378
|
static components: {
|
|
9257
9379
|
Section: typeof Section;
|
|
@@ -9286,11 +9408,11 @@ declare class ChartTypePicker extends Component<Props$q, SpreadsheetChildEnv> {
|
|
|
9286
9408
|
private closePopover;
|
|
9287
9409
|
}
|
|
9288
9410
|
|
|
9289
|
-
interface Props$
|
|
9411
|
+
interface Props$o {
|
|
9290
9412
|
onCloseSidePanel: () => void;
|
|
9291
9413
|
figureId: UID;
|
|
9292
9414
|
}
|
|
9293
|
-
declare class ChartPanel extends Component<Props$
|
|
9415
|
+
declare class ChartPanel extends Component<Props$o, SpreadsheetChildEnv> {
|
|
9294
9416
|
static template: string;
|
|
9295
9417
|
static components: {
|
|
9296
9418
|
Section: typeof Section;
|
|
@@ -9310,18 +9432,19 @@ declare class ChartPanel extends Component<Props$p, SpreadsheetChildEnv> {
|
|
|
9310
9432
|
private getChartDefinition;
|
|
9311
9433
|
}
|
|
9312
9434
|
|
|
9313
|
-
interface Props$
|
|
9435
|
+
interface Props$n {
|
|
9314
9436
|
figureId: UID;
|
|
9315
9437
|
definition: PieChartDefinition;
|
|
9316
9438
|
canUpdateChart: (figureID: UID, definition: Partial<PieChartDefinition>) => DispatchResult;
|
|
9317
9439
|
updateChart: (figureId: UID, definition: Partial<PieChartDefinition>) => DispatchResult;
|
|
9318
9440
|
}
|
|
9319
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
9441
|
+
declare class PieChartDesignPanel extends Component<Props$n, SpreadsheetChildEnv> {
|
|
9320
9442
|
static template: string;
|
|
9321
9443
|
static components: {
|
|
9322
9444
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
9323
9445
|
Section: typeof Section;
|
|
9324
9446
|
Checkbox: typeof Checkbox;
|
|
9447
|
+
ChartLegend: typeof ChartLegend;
|
|
9325
9448
|
};
|
|
9326
9449
|
static props: {
|
|
9327
9450
|
figureId: StringConstructor;
|
|
@@ -9332,13 +9455,12 @@ declare class PieChartDesignPanel extends Component<Props$o, SpreadsheetChildEnv
|
|
|
9332
9455
|
optional: boolean;
|
|
9333
9456
|
};
|
|
9334
9457
|
};
|
|
9335
|
-
updateLegendPosition(ev: any): void;
|
|
9336
9458
|
}
|
|
9337
9459
|
|
|
9338
|
-
interface Props$
|
|
9460
|
+
interface Props$m {
|
|
9339
9461
|
items: ActionSpec[];
|
|
9340
9462
|
}
|
|
9341
|
-
declare class CogWheelMenu extends Component<Props$
|
|
9463
|
+
declare class CogWheelMenu extends Component<Props$m, SpreadsheetChildEnv> {
|
|
9342
9464
|
static template: string;
|
|
9343
9465
|
static components: {
|
|
9344
9466
|
Menu: typeof Menu;
|
|
@@ -9358,10 +9480,11 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9358
9480
|
private activeSheetMatches;
|
|
9359
9481
|
private specificRangeMatches;
|
|
9360
9482
|
private currentSearchRegex;
|
|
9361
|
-
private isSearchDirty;
|
|
9362
9483
|
private initialShowFormulaState;
|
|
9363
9484
|
private preserveSelectedMatchIndex;
|
|
9364
9485
|
private irreplaceableMatchCount;
|
|
9486
|
+
private isSearchDirty;
|
|
9487
|
+
private shouldFinalizeUpdateSelection;
|
|
9365
9488
|
private notificationStore;
|
|
9366
9489
|
selectedMatchIndex: number | null;
|
|
9367
9490
|
toSearch: string;
|
|
@@ -9420,26 +9543,6 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9420
9543
|
get highlights(): Highlight$1[];
|
|
9421
9544
|
}
|
|
9422
9545
|
|
|
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
9546
|
interface Props$l {
|
|
9444
9547
|
deferUpdate: boolean;
|
|
9445
9548
|
isDirty: boolean;
|
|
@@ -9871,7 +9974,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9871
9974
|
type: string;
|
|
9872
9975
|
xAxisID: string;
|
|
9873
9976
|
label: string;
|
|
9874
|
-
data: number[];
|
|
9977
|
+
data: (number | null)[];
|
|
9875
9978
|
order: number;
|
|
9876
9979
|
showLine: boolean;
|
|
9877
9980
|
pointRadius: number;
|
|
@@ -9903,8 +10006,8 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9903
10006
|
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9904
10007
|
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9905
10008
|
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"bar"> & {
|
|
9906
|
-
onProgress?: ((this:
|
|
9907
|
-
onComplete?: ((this:
|
|
10009
|
+
onProgress?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10010
|
+
onComplete?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
9908
10011
|
}> | undefined;
|
|
9909
10012
|
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"bar">> | undefined;
|
|
9910
10013
|
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"bar">> | undefined;
|
|
@@ -9912,7 +10015,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9912
10015
|
type: string;
|
|
9913
10016
|
xAxisID: string;
|
|
9914
10017
|
label: string;
|
|
9915
|
-
data: number[];
|
|
10018
|
+
data: (number | null)[];
|
|
9916
10019
|
order: number;
|
|
9917
10020
|
showLine: boolean;
|
|
9918
10021
|
pointRadius: number;
|
|
@@ -9975,8 +10078,8 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9975
10078
|
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9976
10079
|
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9977
10080
|
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"line"> & {
|
|
9978
|
-
onProgress?: ((this:
|
|
9979
|
-
onComplete?: ((this:
|
|
10081
|
+
onProgress?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10082
|
+
onComplete?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
9980
10083
|
}> | undefined;
|
|
9981
10084
|
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"line">> | undefined;
|
|
9982
10085
|
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"line">> | undefined;
|
|
@@ -9984,7 +10087,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9984
10087
|
type: string;
|
|
9985
10088
|
xAxisID: string;
|
|
9986
10089
|
label: string;
|
|
9987
|
-
data: number[];
|
|
10090
|
+
data: (number | null)[];
|
|
9988
10091
|
order: number;
|
|
9989
10092
|
showLine: boolean;
|
|
9990
10093
|
pointRadius: number;
|
|
@@ -10014,7 +10117,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
10014
10117
|
type: string;
|
|
10015
10118
|
xAxisID: string;
|
|
10016
10119
|
label: string;
|
|
10017
|
-
data: number[];
|
|
10120
|
+
data: (number | null)[];
|
|
10018
10121
|
order: number;
|
|
10019
10122
|
showLine: boolean;
|
|
10020
10123
|
pointRadius: number;
|
|
@@ -10047,8 +10150,8 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
10047
10150
|
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10048
10151
|
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10049
10152
|
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"doughnut"> & {
|
|
10050
|
-
onProgress?: ((this:
|
|
10051
|
-
onComplete?: ((this:
|
|
10153
|
+
onProgress?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10154
|
+
onComplete?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10052
10155
|
}> | undefined;
|
|
10053
10156
|
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"doughnut">> | undefined;
|
|
10054
10157
|
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"doughnut">> | undefined;
|
|
@@ -10056,7 +10159,7 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
10056
10159
|
type: string;
|
|
10057
10160
|
xAxisID: string;
|
|
10058
10161
|
label: string;
|
|
10059
|
-
data: number[];
|
|
10162
|
+
data: (number | null)[];
|
|
10060
10163
|
order: number;
|
|
10061
10164
|
showLine: boolean;
|
|
10062
10165
|
pointRadius: number;
|
|
@@ -10156,13 +10259,20 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
10156
10259
|
hoverBorderDashOffset?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10157
10260
|
hoverBorderJoinStyle?: "round" | "bevel" | "miter" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineJoin | undefined) | readonly ("round" | "bevel" | "miter" | undefined)[] | undefined;
|
|
10158
10261
|
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"radar"> & {
|
|
10159
|
-
onProgress?: ((this:
|
|
10160
|
-
onComplete?: ((this:
|
|
10262
|
+
onProgress?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10263
|
+
onComplete?: ((this: Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10161
10264
|
}> | undefined;
|
|
10162
10265
|
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"radar">> | undefined;
|
|
10163
10266
|
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"radar">> | undefined;
|
|
10164
10267
|
} | undefined;
|
|
10165
10268
|
declare function formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
10269
|
+
declare function getCustomLegendLabels(fontColor: Color, legendLabelConfig: Partial<LegendItem>): {
|
|
10270
|
+
labels: {
|
|
10271
|
+
color: Color;
|
|
10272
|
+
usePointStyle: boolean;
|
|
10273
|
+
generateLabels: (chart: Chart) => LegendItem[];
|
|
10274
|
+
};
|
|
10275
|
+
};
|
|
10166
10276
|
|
|
10167
10277
|
interface GetDefaultChartJsRuntimeOptions {
|
|
10168
10278
|
axisFormats?: ChartAxisFormats;
|
|
@@ -11241,7 +11351,6 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
11241
11351
|
};
|
|
11242
11352
|
spreadsheetRect: Rect;
|
|
11243
11353
|
private _focusGrid?;
|
|
11244
|
-
private keyDownMapping;
|
|
11245
11354
|
private isViewportTooSmall;
|
|
11246
11355
|
private notificationStore;
|
|
11247
11356
|
private composerFocusStore;
|
|
@@ -11252,7 +11361,6 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
11252
11361
|
private unbindModelEvents;
|
|
11253
11362
|
private checkViewportSize;
|
|
11254
11363
|
focusGrid(): void;
|
|
11255
|
-
onKeydown(ev: KeyboardEvent): void;
|
|
11256
11364
|
get gridHeight(): Pixel;
|
|
11257
11365
|
get gridContainerStyle(): string;
|
|
11258
11366
|
get rowLayers(): HeaderGroup[][];
|
|
@@ -11355,7 +11463,7 @@ declare const registries: {
|
|
|
11355
11463
|
clipboardHandlersRegistries: {
|
|
11356
11464
|
figureHandlers: Registry<{
|
|
11357
11465
|
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, {
|
|
11466
|
+
<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
11467
|
type: T;
|
|
11360
11468
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11361
11469
|
type: T;
|
|
@@ -11579,8 +11687,10 @@ declare const registries: {
|
|
|
11579
11687
|
type: T;
|
|
11580
11688
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
11581
11689
|
type: T;
|
|
11690
|
+
}> | Extract<PaintFormat, {
|
|
11691
|
+
type: T;
|
|
11582
11692
|
}>>(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, {
|
|
11693
|
+
<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
11694
|
type: T_1;
|
|
11585
11695
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11586
11696
|
type: T_1;
|
|
@@ -11804,12 +11914,14 @@ declare const registries: {
|
|
|
11804
11914
|
type: T_1;
|
|
11805
11915
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
11806
11916
|
type: T_1;
|
|
11917
|
+
}> | Extract<PaintFormat, {
|
|
11918
|
+
type: T_1;
|
|
11807
11919
|
}>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
|
|
11808
11920
|
}): AbstractFigureClipboardHandler<any>;
|
|
11809
11921
|
}>;
|
|
11810
11922
|
cellHandlers: Registry<{
|
|
11811
11923
|
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, {
|
|
11924
|
+
<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
11925
|
type: T;
|
|
11814
11926
|
}> | Extract<UpdateCellPositionCommand, {
|
|
11815
11927
|
type: T;
|
|
@@ -12033,8 +12145,10 @@ declare const registries: {
|
|
|
12033
12145
|
type: T;
|
|
12034
12146
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
12035
12147
|
type: T;
|
|
12148
|
+
}> | Extract<PaintFormat, {
|
|
12149
|
+
type: T;
|
|
12036
12150
|
}>>(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, {
|
|
12151
|
+
<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
12152
|
type: T_1;
|
|
12039
12153
|
}> | Extract<UpdateCellPositionCommand, {
|
|
12040
12154
|
type: T_1;
|
|
@@ -12258,6 +12372,8 @@ declare const registries: {
|
|
|
12258
12372
|
type: T_1;
|
|
12259
12373
|
}> | Extract<SplitPivotFormulaCommand, {
|
|
12260
12374
|
type: T_1;
|
|
12375
|
+
}> | Extract<PaintFormat, {
|
|
12376
|
+
type: T_1;
|
|
12261
12377
|
}>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
|
|
12262
12378
|
}): AbstractCellClipboardHandler<any, any>;
|
|
12263
12379
|
}>;
|
|
@@ -12293,6 +12409,7 @@ declare const helpers: {
|
|
|
12293
12409
|
createEmptySheet: typeof createEmptySheet;
|
|
12294
12410
|
createEmptyExcelSheet: typeof createEmptyExcelSheet;
|
|
12295
12411
|
getDefaultChartJsRuntime: typeof getDefaultChartJsRuntime;
|
|
12412
|
+
getCustomLegendLabels: typeof getCustomLegendLabels;
|
|
12296
12413
|
chartFontColor: typeof chartFontColor;
|
|
12297
12414
|
getChartAxisTitleRuntime: typeof getChartAxisTitleRuntime;
|
|
12298
12415
|
getChartAxisType: typeof getChartAxisType;
|
|
@@ -12376,12 +12493,12 @@ declare const components: {
|
|
|
12376
12493
|
PivotDimensionOrder: typeof PivotDimensionOrder;
|
|
12377
12494
|
PivotDimension: typeof PivotDimension;
|
|
12378
12495
|
PivotLayoutConfigurator: typeof PivotLayoutConfigurator;
|
|
12379
|
-
EditableName: typeof EditableName;
|
|
12380
12496
|
PivotDeferUpdate: typeof PivotDeferUpdate;
|
|
12381
12497
|
PivotTitleSection: typeof PivotTitleSection;
|
|
12382
12498
|
CogWheelMenu: typeof CogWheelMenu;
|
|
12383
12499
|
TextInput: typeof TextInput;
|
|
12384
12500
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
12501
|
+
RadioSelection: typeof RadioSelection;
|
|
12385
12502
|
};
|
|
12386
12503
|
declare const hooks: {
|
|
12387
12504
|
useDragAndDropListItems: typeof useDragAndDropListItems;
|
|
@@ -12431,6 +12548,37 @@ declare const constants: {
|
|
|
12431
12548
|
value: string;
|
|
12432
12549
|
label: string;
|
|
12433
12550
|
}[];
|
|
12551
|
+
INTERACTIVE_LEGEND_CONFIG: {
|
|
12552
|
+
onHover: (event: any) => void;
|
|
12553
|
+
onLeave: (event: any) => void;
|
|
12554
|
+
onClick: (event: any, legendItem: any, legend: any) => void;
|
|
12555
|
+
};
|
|
12556
|
+
ChartTerms: {
|
|
12557
|
+
Series: string;
|
|
12558
|
+
BackgroundColor: string;
|
|
12559
|
+
StackedBarChart: string;
|
|
12560
|
+
StackedLineChart: string;
|
|
12561
|
+
StackedAreaChart: string;
|
|
12562
|
+
StackedColumnChart: string;
|
|
12563
|
+
CumulativeData: string;
|
|
12564
|
+
TreatLabelsAsText: string;
|
|
12565
|
+
AggregatedChart: string;
|
|
12566
|
+
Errors: {
|
|
12567
|
+
Unexpected: string;
|
|
12568
|
+
InvalidDataSet: string;
|
|
12569
|
+
InvalidLabelRange: string;
|
|
12570
|
+
InvalidScorecardKeyValue: string;
|
|
12571
|
+
InvalidScorecardBaseline: string;
|
|
12572
|
+
InvalidGaugeDataRange: string;
|
|
12573
|
+
EmptyGaugeRangeMin: string;
|
|
12574
|
+
GaugeRangeMinNaN: string;
|
|
12575
|
+
EmptyGaugeRangeMax: string;
|
|
12576
|
+
GaugeRangeMaxNaN: string;
|
|
12577
|
+
GaugeRangeMinBiggerThanRangeMax: string;
|
|
12578
|
+
GaugeLowerInflectionPointNaN: string;
|
|
12579
|
+
GaugeUpperInflectionPointNaN: string;
|
|
12580
|
+
};
|
|
12581
|
+
};
|
|
12434
12582
|
};
|
|
12435
12583
|
|
|
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,
|
|
12584
|
+
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 };
|