@odoo/o-spreadsheet 19.2.0-alpha.2 → 19.2.0-alpha.4
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-engine.d.ts +124 -59
- package/dist/o-spreadsheet-engine.esm.js +2916 -1797
- package/dist/o-spreadsheet-engine.iife.js +2916 -1796
- package/dist/o-spreadsheet-engine.min.iife.js +351 -332
- package/dist/o-spreadsheet.d.ts +236 -85
- package/dist/o_spreadsheet.css +71 -16
- package/dist/o_spreadsheet.esm.js +15432 -13673
- package/dist/o_spreadsheet.iife.js +15432 -13673
- package/dist/o_spreadsheet.min.iife.js +342 -323
- package/dist/o_spreadsheet.xml +323 -376
- package/package.json +3 -3
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ interface LocaleFormat {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
interface CellAttributes {
|
|
34
|
-
readonly id:
|
|
34
|
+
readonly id: number;
|
|
35
35
|
/**
|
|
36
36
|
* Raw cell content
|
|
37
37
|
*/
|
|
@@ -705,7 +705,7 @@ declare class CarouselPlugin extends CorePlugin<CarouselState> implements Carous
|
|
|
705
705
|
}
|
|
706
706
|
|
|
707
707
|
interface CoreState$1 {
|
|
708
|
-
cells: Record<UID, Record<
|
|
708
|
+
cells: Record<UID, Record<number, Cell | undefined> | undefined>;
|
|
709
709
|
nextId: number;
|
|
710
710
|
}
|
|
711
711
|
/**
|
|
@@ -722,7 +722,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
|
|
|
722
722
|
[id: string]: Cell;
|
|
723
723
|
};
|
|
724
724
|
};
|
|
725
|
-
adaptRanges(applyChange:
|
|
725
|
+
adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID, sheetName: AdaptSheetName): void;
|
|
726
726
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
727
727
|
handle(cmd: CoreCommand): void;
|
|
728
728
|
private clearZones;
|
|
@@ -746,12 +746,12 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
|
|
|
746
746
|
export(data: WorkbookData): void;
|
|
747
747
|
importCell(sheetId: UID, content?: string, format?: Format): Cell;
|
|
748
748
|
exportForExcel(data: ExcelWorkbookData): void;
|
|
749
|
-
getCells(sheetId: UID):
|
|
749
|
+
getCells(sheetId: UID): Cell[];
|
|
750
750
|
/**
|
|
751
751
|
* get a cell by ID. Used in evaluation when evaluating an async cell, we need to be able to find it back after
|
|
752
752
|
* starting an async evaluation even if it has been moved or re-allocated
|
|
753
753
|
*/
|
|
754
|
-
getCellById(cellId:
|
|
754
|
+
getCellById(cellId: number): Cell | undefined;
|
|
755
755
|
getFormulaString(sheetId: UID, tokens: Token[], dependencies: Range[], useBoundedReference?: boolean): string;
|
|
756
756
|
getTranslatedCellFormula(sheetId: UID, offsetX: number, offsetY: number, tokens: Token[]): string;
|
|
757
757
|
getFormulaMovedInSheet(originSheetId: UID, targetSheetId: UID, tokens: Token[]): string;
|
|
@@ -784,7 +784,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
|
|
|
784
784
|
* gets the currently used style and format of a cell based on it's coordinates
|
|
785
785
|
*/
|
|
786
786
|
private getFormat;
|
|
787
|
-
private
|
|
787
|
+
private getNextCellId;
|
|
788
788
|
private updateCell;
|
|
789
789
|
private createCell;
|
|
790
790
|
private createLiteralCell;
|
|
@@ -852,7 +852,7 @@ declare abstract class AbstractChart {
|
|
|
852
852
|
* This function should be used to update all the ranges of the chart after
|
|
853
853
|
* a grid change (add/remove col/row, rename sheet, ...)
|
|
854
854
|
*/
|
|
855
|
-
abstract updateRanges(
|
|
855
|
+
abstract updateRanges(rangeAdapters: RangeAdapterFunctions): AbstractChart;
|
|
856
856
|
/**
|
|
857
857
|
* Duplicate the chart when a sheet is duplicated.
|
|
858
858
|
* The ranges that are in the same sheet as the chart are adapted to the new sheetId.
|
|
@@ -885,7 +885,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
|
|
|
885
885
|
readonly charts: Record<UID, FigureChart | undefined>;
|
|
886
886
|
private createChart;
|
|
887
887
|
private validateChartDefinition;
|
|
888
|
-
adaptRanges(
|
|
888
|
+
adaptRanges(rangeAdapters: RangeAdapterFunctions): void;
|
|
889
889
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
890
890
|
handle(cmd: CoreCommand): void;
|
|
891
891
|
getContextCreationChart(chartId: UID): ChartCreationContext | undefined;
|
|
@@ -923,9 +923,9 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
|
|
|
923
923
|
readonly cfRules: {
|
|
924
924
|
[sheet: string]: ConditionalFormatInternal[];
|
|
925
925
|
};
|
|
926
|
-
adaptCFFormulas(applyChange:
|
|
927
|
-
adaptCFRanges(sheetId: UID, applyChange:
|
|
928
|
-
adaptRanges(
|
|
926
|
+
adaptCFFormulas({ applyChange, adaptFormulaString }: RangeAdapterFunctions): void;
|
|
927
|
+
adaptCFRanges(sheetId: UID, { applyChange }: RangeAdapterFunctions): void;
|
|
928
|
+
adaptRanges(rangeAdapters: RangeAdapterFunctions, sheetId: UID): void;
|
|
929
929
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
930
930
|
handle(cmd: CoreCommand): void;
|
|
931
931
|
import(data: WorkbookData): void;
|
|
@@ -1104,7 +1104,7 @@ declare class DataValidationPlugin extends CorePlugin<DataValidationState> imple
|
|
|
1104
1104
|
readonly rules: {
|
|
1105
1105
|
[sheet: string]: DataValidationRule[];
|
|
1106
1106
|
};
|
|
1107
|
-
adaptRanges(
|
|
1107
|
+
adaptRanges(rangeAdapters: RangeAdapterFunctions, sheetId: UID): void;
|
|
1108
1108
|
private adaptDVFormulas;
|
|
1109
1109
|
private adaptDVRanges;
|
|
1110
1110
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
@@ -1139,7 +1139,7 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
|
|
|
1139
1139
|
[sheet: string]: Record<UID, Figure | undefined> | undefined;
|
|
1140
1140
|
};
|
|
1141
1141
|
readonly insertionOrders: UID[];
|
|
1142
|
-
adaptRanges(applyChange:
|
|
1142
|
+
adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
|
|
1143
1143
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
1144
1144
|
beforeHandle(cmd: CoreCommand): void;
|
|
1145
1145
|
handle(cmd: CoreCommand): void;
|
|
@@ -1334,20 +1334,16 @@ interface MergeState {
|
|
|
1334
1334
|
readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
|
|
1335
1335
|
}
|
|
1336
1336
|
declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
|
|
1337
|
-
static getters: readonly ["isInMerge", "isInSameMerge", "isMergeHidden", "getMainCellPosition", "expandZone", "doesIntersectMerge", "doesColumnsHaveCommonMerges", "doesRowsHaveCommonMerges", "getMerges", "getMerge", "getMergesInZone", "isSingleCellOrMerge", "
|
|
1337
|
+
static getters: readonly ["isInMerge", "isInSameMerge", "isMergeHidden", "getMainCellPosition", "expandZone", "doesIntersectMerge", "doesColumnsHaveCommonMerges", "doesRowsHaveCommonMerges", "getMerges", "getMerge", "getMergesInZone", "isSingleCellOrMerge", "isMainCellPosition"];
|
|
1338
1338
|
private nextId;
|
|
1339
1339
|
readonly merges: Record<UID, Record<number, Range | undefined> | undefined>;
|
|
1340
1340
|
readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
|
|
1341
1341
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
1342
1342
|
handle(cmd: CoreCommand): void;
|
|
1343
|
-
adaptRanges(
|
|
1343
|
+
adaptRanges(rangeAdapters: RangeAdapterFunctions, sheetId: UID): void;
|
|
1344
1344
|
getMerges(sheetId: UID): Merge[];
|
|
1345
1345
|
getMerge({ sheetId, col, row }: CellPosition): Merge | undefined;
|
|
1346
1346
|
getMergesInZone(sheetId: UID, zone: Zone): Merge[];
|
|
1347
|
-
/**
|
|
1348
|
-
* Same as `getRangeString` but add all necessary merge to the range to make it a valid selection
|
|
1349
|
-
*/
|
|
1350
|
-
getSelectionRangeString(range: Range, forSheetId: UID): string;
|
|
1351
1347
|
/**
|
|
1352
1348
|
* Return true if the zone intersects an existing merge:
|
|
1353
1349
|
* if they have at least a common cell
|
|
@@ -1578,20 +1574,28 @@ interface PivotStyle {
|
|
|
1578
1574
|
displayTotals?: boolean;
|
|
1579
1575
|
displayColumnHeaders?: boolean;
|
|
1580
1576
|
displayMeasuresRow?: boolean;
|
|
1577
|
+
tableStyleId?: string;
|
|
1578
|
+
bandedRows?: boolean;
|
|
1579
|
+
bandedColumns?: boolean;
|
|
1580
|
+
hasFilters?: boolean;
|
|
1581
1581
|
}
|
|
1582
1582
|
|
|
1583
1583
|
interface Pivot$1 {
|
|
1584
1584
|
definition: PivotCoreDefinition;
|
|
1585
1585
|
formulaId: string;
|
|
1586
1586
|
}
|
|
1587
|
+
interface MeasureState {
|
|
1588
|
+
formula: RangeCompiledFormula;
|
|
1589
|
+
dependencies: Range[];
|
|
1590
|
+
}
|
|
1587
1591
|
interface CoreState {
|
|
1588
1592
|
nextFormulaId: number;
|
|
1589
1593
|
pivots: Record<UID, Pivot$1 | undefined>;
|
|
1590
1594
|
formulaIds: Record<UID, string | undefined>;
|
|
1591
|
-
compiledMeasureFormulas: Record<UID, Record<string,
|
|
1595
|
+
compiledMeasureFormulas: Record<UID, Record<string, MeasureState | undefined>>;
|
|
1592
1596
|
}
|
|
1593
1597
|
declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState {
|
|
1594
|
-
static getters: readonly ["getPivotCoreDefinition", "getPivotDisplayName", "getPivotId", "getPivotFormulaId", "getPivotIds", "getMeasureCompiledFormula", "getPivotName", "isExistingPivot"];
|
|
1598
|
+
static getters: readonly ["getPivotCoreDefinition", "getPivotDisplayName", "getPivotId", "getPivotFormulaId", "getPivotIds", "getMeasureCompiledFormula", "getPivotName", "isExistingPivot", "getMeasureFullDependencies"];
|
|
1595
1599
|
readonly nextFormulaId: number;
|
|
1596
1600
|
readonly pivots: {
|
|
1597
1601
|
[pivotId: UID]: Pivot$1 | undefined;
|
|
@@ -1599,10 +1603,10 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
1599
1603
|
readonly formulaIds: {
|
|
1600
1604
|
[formulaId: UID]: UID | undefined;
|
|
1601
1605
|
};
|
|
1602
|
-
readonly compiledMeasureFormulas: Record<UID, Record<string,
|
|
1606
|
+
readonly compiledMeasureFormulas: Record<UID, Record<string, MeasureState>>;
|
|
1603
1607
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
1604
1608
|
handle(cmd: CoreCommand): void;
|
|
1605
|
-
adaptRanges(applyChange:
|
|
1609
|
+
adaptRanges({ applyChange, adaptFormulaString }: RangeAdapterFunctions): void;
|
|
1606
1610
|
getPivotDisplayName(pivotId: UID): string;
|
|
1607
1611
|
getPivotName(pivotId: UID): string;
|
|
1608
1612
|
/**
|
|
@@ -1618,9 +1622,11 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
1618
1622
|
getPivotFormulaId(pivotId: UID): string;
|
|
1619
1623
|
getPivotIds(): UID[];
|
|
1620
1624
|
isExistingPivot(pivotId: UID): boolean;
|
|
1621
|
-
getMeasureCompiledFormula(measure: PivotCoreMeasure): RangeCompiledFormula;
|
|
1625
|
+
getMeasureCompiledFormula(pivotId: UID, measure: PivotCoreMeasure): RangeCompiledFormula;
|
|
1626
|
+
getMeasureFullDependencies(pivotId: UID, measure: PivotCoreMeasure): Range[];
|
|
1622
1627
|
private addPivot;
|
|
1623
1628
|
private compileCalculatedMeasures;
|
|
1629
|
+
private computeMeasureFullDependencies;
|
|
1624
1630
|
private insertPivot;
|
|
1625
1631
|
private resizeSheet;
|
|
1626
1632
|
private getPivotCore;
|
|
@@ -1639,12 +1645,12 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
1639
1645
|
export(data: WorkbookData): void;
|
|
1640
1646
|
}
|
|
1641
1647
|
|
|
1642
|
-
declare class
|
|
1648
|
+
declare class RangeAdapterPlugin implements CommandHandler<CoreCommand> {
|
|
1643
1649
|
private getters;
|
|
1644
1650
|
private providers;
|
|
1645
1651
|
private isAdaptingRanges;
|
|
1646
1652
|
constructor(getters: CoreGetters);
|
|
1647
|
-
static getters: readonly ["
|
|
1653
|
+
static getters: readonly ["copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
|
|
1648
1654
|
allowDispatch(cmd: CoreCommand): CommandResult;
|
|
1649
1655
|
beforeHandle(command: Command): void;
|
|
1650
1656
|
handle(cmd: CoreCommand): void;
|
|
@@ -1701,7 +1707,6 @@ declare class RangeAdapter$1 implements CommandHandler<CoreCommand> {
|
|
|
1701
1707
|
getRangeFromRangeData(data: RangeData): Range;
|
|
1702
1708
|
isRangeValid(rangeStr: string): boolean;
|
|
1703
1709
|
getRangesUnion(ranges: Range[]): Range;
|
|
1704
|
-
adaptFormulaStringDependencies(sheetId: UID, formula: string, applyChange: ApplyRangeChange): string;
|
|
1705
1710
|
/**
|
|
1706
1711
|
* Copy a formula string to another sheet.
|
|
1707
1712
|
*
|
|
@@ -1727,14 +1732,14 @@ interface SheetState {
|
|
|
1727
1732
|
readonly sheets: Record<UID, Sheet | undefined>;
|
|
1728
1733
|
readonly orderedSheetIds: UID[];
|
|
1729
1734
|
readonly sheetIdsMapName: Record<string, UID | undefined>;
|
|
1730
|
-
readonly cellPosition: Record<
|
|
1735
|
+
readonly cellPosition: Record<number, CellPosition | undefined>;
|
|
1731
1736
|
}
|
|
1732
1737
|
declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
|
|
1733
|
-
static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "
|
|
1738
|
+
static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "getRowCellIds", "getRowsZone", "getNumberCols", "getNumberRows", "getNumberHeaders", "getGridLinesVisibility", "getNextSheetName", "getSheetSize", "getSheetZone", "getPaneDivisions", "checkZonesExistInSheet", "getCommandZones", "getUnboundedZone", "checkElementsIncludeAllNonFrozenHeaders", "getDuplicateSheetName", "tryGetCellPosition"];
|
|
1734
1739
|
readonly sheetIdsMapName: Record<string, UID | undefined>;
|
|
1735
1740
|
readonly orderedSheetIds: UID[];
|
|
1736
1741
|
readonly sheets: Record<UID, Sheet | undefined>;
|
|
1737
|
-
readonly cellPosition: Record<
|
|
1742
|
+
readonly cellPosition: Record<number, CellPosition | undefined>;
|
|
1738
1743
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
1739
1744
|
beforeHandle(cmd: CoreCommand): void;
|
|
1740
1745
|
handle(cmd: CoreCommand): void;
|
|
@@ -1761,9 +1766,10 @@ declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
|
|
|
1761
1766
|
doesHeadersExist(sheetId: UID, dimension: Dimension, headerIndexes: HeaderIndex[]): boolean;
|
|
1762
1767
|
getCell({ sheetId, col, row }: CellPosition): Cell | undefined;
|
|
1763
1768
|
getColsZone(sheetId: UID, start: HeaderIndex, end: HeaderIndex): Zone;
|
|
1764
|
-
|
|
1769
|
+
getRowCellIds(sheetId: UID, row: HeaderIndex): number[];
|
|
1765
1770
|
getRowsZone(sheetId: UID, start: HeaderIndex, end: HeaderIndex): Zone;
|
|
1766
|
-
getCellPosition(cellId:
|
|
1771
|
+
getCellPosition(cellId: number): CellPosition;
|
|
1772
|
+
tryGetCellPosition(cellId: number): CellPosition | undefined;
|
|
1767
1773
|
getNumberCols(sheetId: UID): number;
|
|
1768
1774
|
getNumberRows(sheetId: UID): number;
|
|
1769
1775
|
getNumberHeaders(sheetId: UID, dimension: Dimension): HeaderIndex;
|
|
@@ -1882,7 +1888,7 @@ declare class StylePlugin extends CorePlugin<StylePluginState> implements StyleP
|
|
|
1882
1888
|
readonly styles: Record<UID, ZoneStyle[] | undefined>;
|
|
1883
1889
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
1884
1890
|
handle(cmd: CoreCommand): void;
|
|
1885
|
-
adaptRanges(applyChange:
|
|
1891
|
+
adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
|
|
1886
1892
|
private handleAddColumnn;
|
|
1887
1893
|
private handleAddRows;
|
|
1888
1894
|
private styleIsDefault;
|
|
@@ -1906,6 +1912,7 @@ interface Table {
|
|
|
1906
1912
|
readonly range: Range;
|
|
1907
1913
|
readonly filters: Filter[];
|
|
1908
1914
|
readonly config: TableConfig;
|
|
1915
|
+
readonly isPivotTable?: boolean;
|
|
1909
1916
|
}
|
|
1910
1917
|
interface StaticTable extends Table {
|
|
1911
1918
|
readonly type: "static" | "forceStatic";
|
|
@@ -1935,6 +1942,15 @@ interface TableConfig {
|
|
|
1935
1942
|
automaticAutofill?: boolean;
|
|
1936
1943
|
styleId: string;
|
|
1937
1944
|
}
|
|
1945
|
+
interface TableMetaData {
|
|
1946
|
+
mode: "pivot" | "table";
|
|
1947
|
+
numberOfCols: number;
|
|
1948
|
+
numberOfRows: number;
|
|
1949
|
+
measureRow?: number;
|
|
1950
|
+
mainSubHeaderRows?: Set<number>;
|
|
1951
|
+
firstAlternatingSubHeaderRows?: Set<number>;
|
|
1952
|
+
secondAlternatingSubHeaderRows?: Set<number>;
|
|
1953
|
+
}
|
|
1938
1954
|
interface ComputedTableStyle {
|
|
1939
1955
|
borders: Border$1[][];
|
|
1940
1956
|
styles: Style[][];
|
|
@@ -1944,9 +1960,13 @@ interface TableElementStyle {
|
|
|
1944
1960
|
style?: Style;
|
|
1945
1961
|
size?: number;
|
|
1946
1962
|
}
|
|
1947
|
-
interface TableBorder
|
|
1948
|
-
|
|
1949
|
-
|
|
1963
|
+
interface TableBorder {
|
|
1964
|
+
top?: BorderDescr | null;
|
|
1965
|
+
bottom?: BorderDescr | null;
|
|
1966
|
+
left?: BorderDescr | null;
|
|
1967
|
+
right?: BorderDescr | null;
|
|
1968
|
+
horizontal?: BorderDescr | null;
|
|
1969
|
+
vertical?: BorderDescr | null;
|
|
1950
1970
|
}
|
|
1951
1971
|
interface TableStyle {
|
|
1952
1972
|
category: string;
|
|
@@ -1962,8 +1982,12 @@ interface TableStyle {
|
|
|
1962
1982
|
lastColumn?: TableElementStyle;
|
|
1963
1983
|
headerRow?: TableElementStyle;
|
|
1964
1984
|
totalRow?: TableElementStyle;
|
|
1985
|
+
measureHeader?: TableElementStyle;
|
|
1986
|
+
mainSubHeaderRow?: TableElementStyle;
|
|
1987
|
+
firstAlternatingSubHeaderRow?: TableElementStyle;
|
|
1988
|
+
secondAlternatingSubHeaderRow?: TableElementStyle;
|
|
1965
1989
|
}
|
|
1966
|
-
type TableStyleTemplateName =
|
|
1990
|
+
type TableStyleTemplateName = string;
|
|
1967
1991
|
declare const filterCriterions: GenericCriterionType[];
|
|
1968
1992
|
type FilterCriterionType = (typeof filterCriterions)[number];
|
|
1969
1993
|
declare const availableFiltersOperators: Set<FilterCriterionType>;
|
|
@@ -1990,7 +2014,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
|
|
|
1990
2014
|
static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
|
|
1991
2015
|
readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
|
|
1992
2016
|
readonly nextTableId: number;
|
|
1993
|
-
adaptRanges(applyChange:
|
|
2017
|
+
adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
|
|
1994
2018
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
1995
2019
|
handle(cmd: CoreCommand): void;
|
|
1996
2020
|
getCoreTables(sheetId: UID): CoreTable[];
|
|
@@ -2090,7 +2114,7 @@ type PluginGetters<Plugin extends {
|
|
|
2090
2114
|
new (...args: unknown[]): any;
|
|
2091
2115
|
getters: readonly string[];
|
|
2092
2116
|
}> = Pick<InstanceType<Plugin>, GetterNames<Plugin>>;
|
|
2093
|
-
type RangeAdapterGetters = Pick<
|
|
2117
|
+
type RangeAdapterGetters = Pick<RangeAdapterPlugin, GetterNames<typeof RangeAdapterPlugin>>;
|
|
2094
2118
|
type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof HeaderSizePlugin> & PluginGetters<typeof HeaderVisibilityPlugin> & PluginGetters<typeof CellPlugin> & PluginGetters<typeof StylePlugin> & PluginGetters<typeof MergePlugin> & PluginGetters<typeof BordersPlugin> & PluginGetters<typeof ChartPlugin> & PluginGetters<typeof ImagePlugin> & PluginGetters<typeof CarouselPlugin> & PluginGetters<typeof FigurePlugin> & RangeAdapterGetters & PluginGetters<typeof ConditionalFormatPlugin> & PluginGetters<typeof TablePlugin> & PluginGetters<typeof SettingsPlugin> & PluginGetters<typeof HeaderGroupingPlugin> & PluginGetters<typeof DataValidationPlugin> & PluginGetters<typeof PivotCorePlugin>;
|
|
2095
2119
|
|
|
2096
2120
|
type XLSXExportFile = XLSXExportImageFile | XLSXExportXMLFile;
|
|
@@ -2611,6 +2635,7 @@ interface ExcelChartDefinition {
|
|
|
2611
2635
|
useRightAxis?: boolean;
|
|
2612
2636
|
};
|
|
2613
2637
|
readonly axesDesign?: AxesDesign;
|
|
2638
|
+
readonly showValues?: boolean;
|
|
2614
2639
|
readonly horizontal?: boolean;
|
|
2615
2640
|
readonly isDoughnut?: boolean;
|
|
2616
2641
|
readonly pieHolePercentage?: number;
|
|
@@ -2865,7 +2890,7 @@ declare class BasePlugin<State = any, C = any> implements CommandHandler<C>, Val
|
|
|
2865
2890
|
interface CorePluginConfig {
|
|
2866
2891
|
readonly getters: CoreGetters;
|
|
2867
2892
|
readonly stateObserver: StateObserver;
|
|
2868
|
-
readonly range:
|
|
2893
|
+
readonly range: RangeAdapterPlugin;
|
|
2869
2894
|
readonly dispatch: CoreCommandDispatcher["dispatch"];
|
|
2870
2895
|
readonly canDispatch: CoreCommandDispatcher["dispatch"];
|
|
2871
2896
|
readonly custom: ModelConfig["custom"];
|
|
@@ -2899,7 +2924,7 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
|
|
|
2899
2924
|
* @param sheetId an sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
|
|
2900
2925
|
* @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
|
|
2901
2926
|
*/
|
|
2902
|
-
adaptRanges(
|
|
2927
|
+
adaptRanges(rangeAdapterFunctions: RangeAdapterFunctions, sheetId: UID, sheetName: AdaptSheetName): void;
|
|
2903
2928
|
}
|
|
2904
2929
|
|
|
2905
2930
|
type ZoneBorderData = {
|
|
@@ -2923,7 +2948,7 @@ declare class BordersPlugin extends CorePlugin<BordersPluginState> implements Bo
|
|
|
2923
2948
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
2924
2949
|
handle(cmd: CoreCommand): void;
|
|
2925
2950
|
beforeHandle(cmd: CoreCommand): void;
|
|
2926
|
-
adaptRanges(applyChange:
|
|
2951
|
+
adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
|
|
2927
2952
|
private onRowRemove;
|
|
2928
2953
|
private onColRemove;
|
|
2929
2954
|
getCellBorder(position: CellPosition): Border$1;
|
|
@@ -3784,6 +3809,9 @@ declare class DynamicTablesPlugin extends CoreViewPlugin {
|
|
|
3784
3809
|
handle(cmd: Command): void;
|
|
3785
3810
|
finalize(): void;
|
|
3786
3811
|
private computeTables;
|
|
3812
|
+
private getDynamicTables;
|
|
3813
|
+
private getTablesFromPivots;
|
|
3814
|
+
private getTableConfigFromPivotStyle;
|
|
3787
3815
|
getFilters(sheetId: UID): Filter[];
|
|
3788
3816
|
getTables(sheetId: UID): Table[];
|
|
3789
3817
|
getFilter(position: CellPosition): Filter | undefined;
|
|
@@ -3909,6 +3937,13 @@ declare class EvaluationDataValidationPlugin extends CoreViewPlugin {
|
|
|
3909
3937
|
private getEvaluatedCriterionValues;
|
|
3910
3938
|
}
|
|
3911
3939
|
|
|
3940
|
+
declare class FormulaTrackerPlugin extends CoreViewPlugin {
|
|
3941
|
+
static getters: readonly ["getCellsWithTrackedFormula"];
|
|
3942
|
+
private trackedCells;
|
|
3943
|
+
handle(cmd: Command): void;
|
|
3944
|
+
getCellsWithTrackedFormula(formula: string): number[];
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3912
3947
|
type Canvas2DContext = CanvasRenderingContext2D | OffscreenCanvasRenderingContext2D;
|
|
3913
3948
|
|
|
3914
3949
|
interface HeaderSizeState {
|
|
@@ -4057,6 +4092,12 @@ declare class SpreadsheetPivotTable {
|
|
|
4057
4092
|
field: string;
|
|
4058
4093
|
value: CellValue;
|
|
4059
4094
|
}[][];
|
|
4095
|
+
getPivotTableDimensions(pivotStyle: Required<PivotStyle>): {
|
|
4096
|
+
numberOfCols: number;
|
|
4097
|
+
numberOfRows: number;
|
|
4098
|
+
numberOfHeaderRows: number;
|
|
4099
|
+
};
|
|
4100
|
+
getNumberOfRowGroupBys(): number;
|
|
4060
4101
|
}
|
|
4061
4102
|
|
|
4062
4103
|
interface InitPivotParams {
|
|
@@ -4089,7 +4130,7 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
4089
4130
|
}
|
|
4090
4131
|
|
|
4091
4132
|
declare class PivotUIPlugin extends CoreViewPlugin {
|
|
4092
|
-
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotCellSortDirection", "getPivotIdFromPosition", "getPivotCellFromPosition", "generateNewCalculatedMeasureName", "isPivotUnused", "isSpillPivotFormula"];
|
|
4133
|
+
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotCellSortDirection", "getPivotIdFromPosition", "getPivotCellFromPosition", "generateNewCalculatedMeasureName", "isPivotUnused", "isSpillPivotFormula", "getAllPivotArrayFormulas", "getPivotStyleAtPosition"];
|
|
4093
4134
|
private pivots;
|
|
4094
4135
|
private unusedPivotsInFormulas?;
|
|
4095
4136
|
private custom;
|
|
@@ -4132,6 +4173,16 @@ declare class PivotUIPlugin extends CoreViewPlugin {
|
|
|
4132
4173
|
recreate: boolean;
|
|
4133
4174
|
}): void;
|
|
4134
4175
|
private _getUnusedPivotsInFormulas;
|
|
4176
|
+
getAllPivotArrayFormulas(): {
|
|
4177
|
+
position: CellPosition;
|
|
4178
|
+
pivotStyle: Required<PivotStyle>;
|
|
4179
|
+
pivotId: UID;
|
|
4180
|
+
}[];
|
|
4181
|
+
getPivotStyleAtPosition(position: CellPosition): {
|
|
4182
|
+
pivotStyle: Required<PivotStyle>;
|
|
4183
|
+
pivotId: UID;
|
|
4184
|
+
} | undefined;
|
|
4185
|
+
private isMainFunctionPivotSpreadFunction;
|
|
4135
4186
|
}
|
|
4136
4187
|
|
|
4137
4188
|
/**
|
|
@@ -4584,7 +4635,6 @@ declare class SplitToColumnsPlugin extends UIPlugin {
|
|
|
4584
4635
|
}
|
|
4585
4636
|
|
|
4586
4637
|
declare class SubtotalEvaluationPlugin extends UIPlugin {
|
|
4587
|
-
private subtotalCells;
|
|
4588
4638
|
handle(cmd: Command): void;
|
|
4589
4639
|
}
|
|
4590
4640
|
|
|
@@ -4598,6 +4648,7 @@ declare class TableComputedStylePlugin extends UIPlugin {
|
|
|
4598
4648
|
getCellTableBorder(position: CellPosition): Border$1 | undefined;
|
|
4599
4649
|
getCellTableBorderZone(sheetId: UID, zone: Zone): PositionMap<Border$1>;
|
|
4600
4650
|
private computeTableStyle;
|
|
4651
|
+
private getTableMetaData;
|
|
4601
4652
|
/**
|
|
4602
4653
|
* Get the actual table config that will be used to compute the table style. It is different from
|
|
4603
4654
|
* the config of the table because of hidden rows and columns in the sheet. For example remove the
|
|
@@ -4705,6 +4756,9 @@ declare class ClipboardPlugin extends UIPlugin {
|
|
|
4705
4756
|
constructor(config: UIPluginConfig);
|
|
4706
4757
|
allowDispatch(cmd: LocalCommand): CommandResult;
|
|
4707
4758
|
handle(cmd: Command): void;
|
|
4759
|
+
private getCopiedDataAbove;
|
|
4760
|
+
private getCopiedDataOnLeft;
|
|
4761
|
+
private getCopiedDataAboveOnLeft;
|
|
4708
4762
|
private convertTextToClipboardData;
|
|
4709
4763
|
private selectClipboardHandlers;
|
|
4710
4764
|
private isCutAllowedOn;
|
|
@@ -4800,7 +4854,7 @@ declare class HeaderPositionsUIPlugin extends UIPlugin {
|
|
|
4800
4854
|
*/
|
|
4801
4855
|
declare class GridSelectionPlugin extends UIPlugin {
|
|
4802
4856
|
static layers: readonly ["Selection"];
|
|
4803
|
-
static getters: readonly ["getActiveSheet", "getActiveSheetId", "getActiveSheetName", "getActiveCell", "getActiveCols", "getActiveRows", "getCurrentStyle", "getSelectedZones", "getSelectedZone", "getSelectedCells", "getSelectedFigureId", "getSelection", "getActivePosition", "getSheetPosition", "isSingleColSelected", "getElementsFromSelection", "tryGetActiveSheetId", "isGridSelectionActive", "getSelectecUnboundedZone"];
|
|
4857
|
+
static getters: readonly ["getActiveSheet", "getActiveSheetId", "getActiveSheetName", "getActiveCell", "getActiveCols", "getActiveRows", "getCurrentStyle", "getSelectedZones", "getSelectedZone", "getSelectedCells", "getSelectedFigureId", "getSelection", "getActivePosition", "getSheetPosition", "isSingleColSelected", "getElementsFromSelection", "tryGetActiveSheetId", "isGridSelectionActive", "getSelectecUnboundedZone", "getSelectionRangeString"];
|
|
4804
4858
|
private gridSelection;
|
|
4805
4859
|
private selectedFigureId;
|
|
4806
4860
|
private sheetsData;
|
|
@@ -4841,6 +4895,12 @@ declare class GridSelectionPlugin extends UIPlugin {
|
|
|
4841
4895
|
* if dimension === "ROW" => [2,3,4,5]
|
|
4842
4896
|
*/
|
|
4843
4897
|
getElementsFromSelection(dimension: Dimension): number[];
|
|
4898
|
+
/**
|
|
4899
|
+
* Same as `getRangeString` but add:
|
|
4900
|
+
* - all necessary merge to the range to make it a valid selection
|
|
4901
|
+
* - the "#" suffix if the range is a spilled reference
|
|
4902
|
+
*/
|
|
4903
|
+
getSelectionRangeString(range: Range, forSheetId: UID): string;
|
|
4844
4904
|
private activateSheet;
|
|
4845
4905
|
/**
|
|
4846
4906
|
* Ensure selections are not outside sheet boundaries.
|
|
@@ -5157,7 +5217,7 @@ declare class SheetViewPlugin extends UIPlugin {
|
|
|
5157
5217
|
type Getters = {
|
|
5158
5218
|
isReadonly: () => boolean;
|
|
5159
5219
|
isDashboard: () => boolean;
|
|
5160
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof SubtotalEvaluationPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof DynamicTranslate> & PluginGetters<typeof CarouselUIPlugin>;
|
|
5220
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof SubtotalEvaluationPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof DynamicTranslate> & PluginGetters<typeof FormulaTrackerPlugin> & PluginGetters<typeof CarouselUIPlugin>;
|
|
5161
5221
|
|
|
5162
5222
|
type ClipboardReadResult = {
|
|
5163
5223
|
status: "ok";
|
|
@@ -5370,7 +5430,6 @@ interface RenderingBox {
|
|
|
5370
5430
|
center?: RenderingGridIcon;
|
|
5371
5431
|
};
|
|
5372
5432
|
textOpacity?: number;
|
|
5373
|
-
skipCellGridLines?: boolean;
|
|
5374
5433
|
disabledAnimation?: boolean;
|
|
5375
5434
|
}
|
|
5376
5435
|
type Box = RenderingBox & Rect;
|
|
@@ -5587,13 +5646,13 @@ interface ZoneDependentCommand {
|
|
|
5587
5646
|
zone: Zone;
|
|
5588
5647
|
}
|
|
5589
5648
|
declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
|
|
5590
|
-
declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "
|
|
5591
|
-
declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "
|
|
5592
|
-
declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "
|
|
5593
|
-
declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "
|
|
5594
|
-
declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "
|
|
5595
|
-
declare const invalidSubtotalFormulasCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "
|
|
5596
|
-
declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "
|
|
5649
|
+
declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
5650
|
+
declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
5651
|
+
declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
5652
|
+
declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
5653
|
+
declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
5654
|
+
declare const invalidSubtotalFormulasCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
5655
|
+
declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
5597
5656
|
declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
|
|
5598
5657
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
5599
5658
|
declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
@@ -5608,7 +5667,7 @@ interface UpdateCellCommand extends PositionDependentCommand {
|
|
|
5608
5667
|
*/
|
|
5609
5668
|
interface UpdateCellPositionCommand extends PositionDependentCommand {
|
|
5610
5669
|
type: "UPDATE_CELL_POSITION";
|
|
5611
|
-
cellId?:
|
|
5670
|
+
cellId?: number;
|
|
5612
5671
|
}
|
|
5613
5672
|
interface AddColumnsRowsCommand extends SheetDependentCommand, SheetEditingCommand {
|
|
5614
5673
|
type: "ADD_COLUMNS_ROWS";
|
|
@@ -5996,6 +6055,9 @@ interface CopyPasteCellsAboveCommand {
|
|
|
5996
6055
|
interface CopyPasteCellsOnLeftCommand {
|
|
5997
6056
|
type: "COPY_PASTE_CELLS_ON_LEFT";
|
|
5998
6057
|
}
|
|
6058
|
+
interface CopyPasteCellsOnZoneCommand {
|
|
6059
|
+
type: "COPY_PASTE_CELLS_ON_ZONE";
|
|
6060
|
+
}
|
|
5999
6061
|
interface RepeatPasteCommand {
|
|
6000
6062
|
type: "REPEAT_PASTE";
|
|
6001
6063
|
target: Zone[];
|
|
@@ -6038,7 +6100,7 @@ interface ActivateSheetCommand {
|
|
|
6038
6100
|
}
|
|
6039
6101
|
interface EvaluateCellsCommand {
|
|
6040
6102
|
type: "EVALUATE_CELLS";
|
|
6041
|
-
cellIds?:
|
|
6103
|
+
cellIds?: number[];
|
|
6042
6104
|
}
|
|
6043
6105
|
interface EvaluateChartsCommand {
|
|
6044
6106
|
type: "EVALUATE_CHARTS";
|
|
@@ -6244,7 +6306,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
|
|
|
6244
6306
|
| UpdateLocaleCommand
|
|
6245
6307
|
/** PIVOT */
|
|
6246
6308
|
| AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
|
|
6247
|
-
type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SetZoomCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | DuplicateCarouselChartCommand | UpdateCarouselActiveItemCommand | PopOutChartFromCarouselCommand;
|
|
6309
|
+
type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | CopyPasteCellsOnZoneCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SetZoomCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | DuplicateCarouselChartCommand | UpdateCarouselActiveItemCommand | PopOutChartFromCarouselCommand;
|
|
6248
6310
|
type Command = CoreCommand | LocalCommand;
|
|
6249
6311
|
/**
|
|
6250
6312
|
* Holds the result of a command dispatch.
|
|
@@ -6514,6 +6576,7 @@ interface Style {
|
|
|
6514
6576
|
textColor?: Color;
|
|
6515
6577
|
fontSize?: number;
|
|
6516
6578
|
rotation?: number;
|
|
6579
|
+
hideGridLines?: boolean;
|
|
6517
6580
|
}
|
|
6518
6581
|
interface DataBarFill {
|
|
6519
6582
|
color: Color;
|
|
@@ -6603,7 +6666,7 @@ interface HeaderDimensions {
|
|
|
6603
6666
|
end: Pixel;
|
|
6604
6667
|
}
|
|
6605
6668
|
interface Row {
|
|
6606
|
-
cells: Record<number,
|
|
6669
|
+
cells: Record<number, number | undefined>;
|
|
6607
6670
|
}
|
|
6608
6671
|
interface Position {
|
|
6609
6672
|
col: HeaderIndex;
|
|
@@ -6641,13 +6704,15 @@ declare const enum DIRECTION {
|
|
|
6641
6704
|
RIGHT = "right"
|
|
6642
6705
|
}
|
|
6643
6706
|
type ChangeType = "REMOVE" | "RESIZE" | "MOVE" | "CHANGE" | "NONE";
|
|
6644
|
-
type ApplyRangeChangeResult = {
|
|
6645
|
-
changeType:
|
|
6646
|
-
range:
|
|
6647
|
-
}
|
|
6648
|
-
|
|
6707
|
+
type ApplyRangeChangeResult<T> = {
|
|
6708
|
+
changeType: ChangeType;
|
|
6709
|
+
range: T;
|
|
6710
|
+
};
|
|
6711
|
+
type ApplyFormulaRangeChangeResult = {
|
|
6712
|
+
changeType: ChangeType;
|
|
6713
|
+
formula: string;
|
|
6649
6714
|
};
|
|
6650
|
-
type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult
|
|
6715
|
+
type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult<Range>;
|
|
6651
6716
|
type AdaptSheetName = {
|
|
6652
6717
|
old: string;
|
|
6653
6718
|
current: string;
|
|
@@ -6657,10 +6722,15 @@ type RangeAdapter = {
|
|
|
6657
6722
|
sheetName: AdaptSheetName;
|
|
6658
6723
|
applyChange: ApplyRangeChange;
|
|
6659
6724
|
};
|
|
6725
|
+
type RangeAdapterFunctions = {
|
|
6726
|
+
applyChange: ApplyRangeChange;
|
|
6727
|
+
adaptRangeString: (defaultSheetId: UID, sheetXC: string) => ApplyRangeChangeResult<string>;
|
|
6728
|
+
adaptFormulaString: (defaultSheetId: UID, formula: string) => string;
|
|
6729
|
+
};
|
|
6660
6730
|
type Dimension = "COL" | "ROW";
|
|
6661
6731
|
type ConsecutiveIndexes = HeaderIndex[];
|
|
6662
6732
|
interface RangeProvider {
|
|
6663
|
-
adaptRanges: (
|
|
6733
|
+
adaptRanges: (adapterFunctions: RangeAdapterFunctions, sheetId: UID, sheetName: AdaptSheetName) => void;
|
|
6664
6734
|
}
|
|
6665
6735
|
type Validation<T> = (toValidate: T) => CommandResult | CommandResult[];
|
|
6666
6736
|
type Increment = 1 | -1 | 0;
|
|
@@ -6736,6 +6806,7 @@ type SortDirection = "asc" | "desc";
|
|
|
6736
6806
|
interface ValueAndLabel<T = string> {
|
|
6737
6807
|
value: T;
|
|
6738
6808
|
label: string;
|
|
6809
|
+
separator?: boolean;
|
|
6739
6810
|
}
|
|
6740
6811
|
|
|
6741
6812
|
interface BarChartDefinition extends CommonChartDefinition {
|
|
@@ -8636,10 +8707,62 @@ declare class ChartHumanizeNumbers extends Component<ChartSidePanelProps<ChartWi
|
|
|
8636
8707
|
get title(): string;
|
|
8637
8708
|
}
|
|
8638
8709
|
|
|
8710
|
+
interface SelectProps {
|
|
8711
|
+
onChange: (value: string) => void;
|
|
8712
|
+
values: ValueAndLabel[];
|
|
8713
|
+
selectedValue?: string;
|
|
8714
|
+
class?: string;
|
|
8715
|
+
popoverClass?: string;
|
|
8716
|
+
name?: string;
|
|
8717
|
+
}
|
|
8718
|
+
declare class Select extends Component<SelectProps, SpreadsheetChildEnv> {
|
|
8719
|
+
static template: string;
|
|
8720
|
+
static props: {
|
|
8721
|
+
onChange: FunctionConstructor;
|
|
8722
|
+
values: ArrayConstructor;
|
|
8723
|
+
selectedValue: {
|
|
8724
|
+
type: StringConstructor;
|
|
8725
|
+
optional: boolean;
|
|
8726
|
+
};
|
|
8727
|
+
class: {
|
|
8728
|
+
type: StringConstructor;
|
|
8729
|
+
optional: boolean;
|
|
8730
|
+
};
|
|
8731
|
+
popoverClass: {
|
|
8732
|
+
type: StringConstructor;
|
|
8733
|
+
optional: boolean;
|
|
8734
|
+
};
|
|
8735
|
+
name: {
|
|
8736
|
+
type: StringConstructor;
|
|
8737
|
+
optional: boolean;
|
|
8738
|
+
};
|
|
8739
|
+
};
|
|
8740
|
+
static components: {
|
|
8741
|
+
Popover: typeof Popover;
|
|
8742
|
+
};
|
|
8743
|
+
private selectRef;
|
|
8744
|
+
private dropdownRef;
|
|
8745
|
+
private state;
|
|
8746
|
+
setup(): void;
|
|
8747
|
+
onMouseDown(): void;
|
|
8748
|
+
onKeyDown(ev: KeyboardEvent): void;
|
|
8749
|
+
onExternalClick(ev: MouseEvent): void;
|
|
8750
|
+
onOptionClick(value: string): void;
|
|
8751
|
+
toggleDropdown(): void;
|
|
8752
|
+
private closeDropdown;
|
|
8753
|
+
get popoverProps(): PopoverProps;
|
|
8754
|
+
get selectedLabel(): string;
|
|
8755
|
+
onOptionHover(value: string): void;
|
|
8756
|
+
get activeValue(): string | undefined;
|
|
8757
|
+
private navigateToNextOption;
|
|
8758
|
+
private navigateToPreviousOption;
|
|
8759
|
+
}
|
|
8760
|
+
|
|
8639
8761
|
declare class ChartLegend extends Component<ChartSidePanelProps<ChartWithDataSetDefinition>, SpreadsheetChildEnv> {
|
|
8640
8762
|
static template: string;
|
|
8641
8763
|
static components: {
|
|
8642
8764
|
Section: typeof Section;
|
|
8765
|
+
Select: typeof Select;
|
|
8643
8766
|
};
|
|
8644
8767
|
static props: {
|
|
8645
8768
|
chartId: StringConstructor;
|
|
@@ -8647,7 +8770,8 @@ declare class ChartLegend extends Component<ChartSidePanelProps<ChartWithDataSet
|
|
|
8647
8770
|
canUpdateChart: FunctionConstructor;
|
|
8648
8771
|
updateChart: FunctionConstructor;
|
|
8649
8772
|
};
|
|
8650
|
-
updateLegendPosition(
|
|
8773
|
+
updateLegendPosition(value: LegendPosition): void;
|
|
8774
|
+
get legendValues(): ValueAndLabel[];
|
|
8651
8775
|
}
|
|
8652
8776
|
|
|
8653
8777
|
interface Props$V extends GenericInputProps {
|
|
@@ -8709,6 +8833,7 @@ declare class SeriesDesignEditor extends Component<Props$U, SpreadsheetChildEnv>
|
|
|
8709
8833
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
8710
8834
|
Section: typeof Section;
|
|
8711
8835
|
RoundColorPicker: typeof RoundColorPicker;
|
|
8836
|
+
Select: typeof Select;
|
|
8712
8837
|
};
|
|
8713
8838
|
static props: {
|
|
8714
8839
|
slots: {
|
|
@@ -8723,12 +8848,13 @@ declare class SeriesDesignEditor extends Component<Props$U, SpreadsheetChildEnv>
|
|
|
8723
8848
|
protected state: {
|
|
8724
8849
|
index: number;
|
|
8725
8850
|
};
|
|
8726
|
-
getDataSeries():
|
|
8727
|
-
updateEditedSeries(
|
|
8851
|
+
getDataSeries(): string[];
|
|
8852
|
+
updateEditedSeries(index: string): void;
|
|
8728
8853
|
updateDataSeriesColor(color: string): void;
|
|
8729
8854
|
getDataSeriesColor(): "" | Color;
|
|
8730
8855
|
updateDataSeriesLabel(ev: Event): void;
|
|
8731
|
-
getDataSeriesLabel(): string
|
|
8856
|
+
getDataSeriesLabel(): string;
|
|
8857
|
+
get selectOptions(): ValueAndLabel[];
|
|
8732
8858
|
}
|
|
8733
8859
|
|
|
8734
8860
|
interface Props$T extends ChartSidePanelProps<ChartWithDataSetDefinition> {
|
|
@@ -8743,6 +8869,7 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$T, SpreadsheetC
|
|
|
8743
8869
|
Section: typeof Section;
|
|
8744
8870
|
RoundColorPicker: typeof RoundColorPicker;
|
|
8745
8871
|
NumberInput: typeof NumberInput;
|
|
8872
|
+
Select: typeof Select;
|
|
8746
8873
|
};
|
|
8747
8874
|
static props: {
|
|
8748
8875
|
slots: {
|
|
@@ -8764,9 +8891,10 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$T, SpreadsheetC
|
|
|
8764
8891
|
toggleDataTrend(index: number, display: boolean): void;
|
|
8765
8892
|
getTrendLineConfiguration(index: number): TrendConfiguration | undefined;
|
|
8766
8893
|
getTrendType(config: TrendConfiguration): "linear" | "" | TrendType | undefined;
|
|
8767
|
-
onChangeTrendType(index:
|
|
8768
|
-
|
|
8769
|
-
|
|
8894
|
+
onChangeTrendType(index: number, type: string): void;
|
|
8895
|
+
get trendOptions(): ValueAndLabel[];
|
|
8896
|
+
getPolynomialDegrees(index: number): ValueAndLabel[];
|
|
8897
|
+
onChangePolynomialDegree(index: number, value: string): void;
|
|
8770
8898
|
getMaxPolynomialDegree(index: any): number;
|
|
8771
8899
|
get defaultWindowSize(): number;
|
|
8772
8900
|
onChangeMovingAverageWindow(index: number, value: string): void;
|
|
@@ -9116,6 +9244,7 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
9116
9244
|
* Return ranges currently referenced in the composer
|
|
9117
9245
|
*/
|
|
9118
9246
|
private getReferencedRanges;
|
|
9247
|
+
private getFullySpreadRange;
|
|
9119
9248
|
private updateAutoCompleteProvider;
|
|
9120
9249
|
private findAutocompleteProvider;
|
|
9121
9250
|
hideHelp(): void;
|
|
@@ -9131,7 +9260,7 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
9131
9260
|
* - Previous and next tokens can be separated by spaces
|
|
9132
9261
|
*/
|
|
9133
9262
|
private canStartComposerRangeSelection;
|
|
9134
|
-
private
|
|
9263
|
+
private getMissingSymbols;
|
|
9135
9264
|
}
|
|
9136
9265
|
|
|
9137
9266
|
declare class CellComposerStore extends AbstractComposerStore {
|
|
@@ -9481,6 +9610,7 @@ declare class GaugeChartDesignPanel extends Component<ChartSidePanelProps<GaugeC
|
|
|
9481
9610
|
ChartErrorSection: typeof ChartErrorSection;
|
|
9482
9611
|
StandaloneComposer: typeof StandaloneComposer;
|
|
9483
9612
|
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
9613
|
+
Select: typeof Select;
|
|
9484
9614
|
};
|
|
9485
9615
|
static props: {
|
|
9486
9616
|
chartId: StringConstructor;
|
|
@@ -9496,12 +9626,16 @@ declare class GaugeChartDesignPanel extends Component<ChartSidePanelProps<GaugeC
|
|
|
9496
9626
|
get isLowerInflectionPointInvalid(): boolean;
|
|
9497
9627
|
get isUpperInflectionPointInvalid(): boolean;
|
|
9498
9628
|
updateSectionColor(target: string, color: Color): void;
|
|
9629
|
+
updateSectionRuleOperator(inflectionPoint: "lowerInflectionPoint" | "upperInflectionPoint", operator: "<" | "<="): void;
|
|
9630
|
+
updateSectionRulePointType(inflectionPoint: "lowerInflectionPoint" | "upperInflectionPoint", type: "number" | "percentage"): void;
|
|
9499
9631
|
updateSectionRule(sectionRule: SectionRule): void;
|
|
9500
9632
|
onConfirmGaugeRange(editedRange: "rangeMin" | "rangeMax", content: string): void;
|
|
9501
9633
|
getGaugeInflectionComposerProps(sectionType: "lowerColor" | "middleColor"): StandaloneComposer["props"];
|
|
9502
9634
|
private checkSectionRuleFormulasAreValid;
|
|
9503
9635
|
private valueIsValidNumber;
|
|
9504
9636
|
get sheetId(): UID;
|
|
9637
|
+
get inflectionPointOperators(): ValueAndLabel[];
|
|
9638
|
+
get inflectionPointTypes(): ValueAndLabel[];
|
|
9505
9639
|
}
|
|
9506
9640
|
|
|
9507
9641
|
declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
@@ -9525,6 +9659,7 @@ declare class ScorecardChartConfigPanel extends Component<ChartSidePanelProps<Sc
|
|
|
9525
9659
|
SelectionInput: typeof SelectionInput;
|
|
9526
9660
|
ChartErrorSection: typeof ChartErrorSection;
|
|
9527
9661
|
Section: typeof Section;
|
|
9662
|
+
Select: typeof Select;
|
|
9528
9663
|
};
|
|
9529
9664
|
static props: {
|
|
9530
9665
|
chartId: StringConstructor;
|
|
@@ -9544,7 +9679,8 @@ declare class ScorecardChartConfigPanel extends Component<ChartSidePanelProps<Sc
|
|
|
9544
9679
|
onBaselineRangeChanged(ranges: string[]): void;
|
|
9545
9680
|
updateBaselineRange(): void;
|
|
9546
9681
|
getBaselineRange(): string;
|
|
9547
|
-
updateBaselineMode(
|
|
9682
|
+
updateBaselineMode(baselineMode: BaselineMode): void;
|
|
9683
|
+
get baselineModeOptions(): ValueAndLabel[];
|
|
9548
9684
|
}
|
|
9549
9685
|
|
|
9550
9686
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
@@ -11286,6 +11422,9 @@ declare class PivotDimensionGranularity extends Component<Props$m, SpreadsheetCh
|
|
|
11286
11422
|
availableGranularities: SetConstructor;
|
|
11287
11423
|
allGranularities: ArrayConstructor;
|
|
11288
11424
|
};
|
|
11425
|
+
static components: {
|
|
11426
|
+
Select: typeof Select;
|
|
11427
|
+
};
|
|
11289
11428
|
periods: {
|
|
11290
11429
|
year: string;
|
|
11291
11430
|
quarter: string;
|
|
@@ -11301,6 +11440,7 @@ declare class PivotDimensionGranularity extends Component<Props$m, SpreadsheetCh
|
|
|
11301
11440
|
minute_number: string;
|
|
11302
11441
|
second_number: string;
|
|
11303
11442
|
};
|
|
11443
|
+
get granularityOptions(): ValueAndLabel[];
|
|
11304
11444
|
}
|
|
11305
11445
|
|
|
11306
11446
|
interface Props$l {
|
|
@@ -11313,6 +11453,10 @@ declare class PivotDimensionOrder extends Component<Props$l, SpreadsheetChildEnv
|
|
|
11313
11453
|
dimension: ObjectConstructor;
|
|
11314
11454
|
onUpdated: FunctionConstructor;
|
|
11315
11455
|
};
|
|
11456
|
+
static components: {
|
|
11457
|
+
Select: typeof Select;
|
|
11458
|
+
};
|
|
11459
|
+
get orderSelectOptions(): ValueAndLabel[];
|
|
11316
11460
|
}
|
|
11317
11461
|
|
|
11318
11462
|
/**
|
|
@@ -11376,12 +11520,14 @@ interface Props$j {
|
|
|
11376
11520
|
onMeasureUpdated: (measure: PivotMeasure) => void;
|
|
11377
11521
|
onRemoved: () => void;
|
|
11378
11522
|
generateMeasureId: (fieldName: string, aggregator?: string) => string;
|
|
11523
|
+
aggregators: any;
|
|
11379
11524
|
}
|
|
11380
11525
|
declare class PivotMeasureEditor extends Component<Props$j> {
|
|
11381
11526
|
static template: string;
|
|
11382
11527
|
static components: {
|
|
11383
11528
|
PivotDimension: typeof PivotDimension;
|
|
11384
11529
|
StandaloneComposer: typeof StandaloneComposer;
|
|
11530
|
+
Select: typeof Select;
|
|
11385
11531
|
};
|
|
11386
11532
|
static props: {
|
|
11387
11533
|
definition: ObjectConstructor;
|
|
@@ -11400,6 +11546,7 @@ declare class PivotMeasureEditor extends Component<Props$j> {
|
|
|
11400
11546
|
openShowValuesAs(): void;
|
|
11401
11547
|
getColoredSymbolToken(token: Token): Color | undefined;
|
|
11402
11548
|
get isCalculatedMeasureInvalid(): boolean;
|
|
11549
|
+
get aggregatorOptions(): ValueAndLabel[];
|
|
11403
11550
|
}
|
|
11404
11551
|
|
|
11405
11552
|
interface Props$i {
|
|
@@ -11946,6 +12093,7 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<ChartSidePane
|
|
|
11946
12093
|
static components: {
|
|
11947
12094
|
RoundColorPicker: typeof RoundColorPicker;
|
|
11948
12095
|
ColorScalePicker: typeof ColorScalePicker;
|
|
12096
|
+
Select: typeof Select;
|
|
11949
12097
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
11950
12098
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
11951
12099
|
Section: typeof Section;
|
|
@@ -11957,8 +12105,9 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<ChartSidePane
|
|
|
11957
12105
|
};
|
|
11958
12106
|
updateColorScale(colorScale: ChartColorScale | undefined): void;
|
|
11959
12107
|
updateMissingValueColor(color: Color): void;
|
|
11960
|
-
updateLegendPosition(
|
|
12108
|
+
updateLegendPosition(value: LegendPosition): void;
|
|
11961
12109
|
get selectedMissingValueColor(): Color | "#ffffff";
|
|
12110
|
+
get legendValues(): ValueAndLabel[];
|
|
11962
12111
|
}
|
|
11963
12112
|
|
|
11964
12113
|
interface Props$a {
|
|
@@ -11970,15 +12119,17 @@ declare class GeoChartRegionSelectSection extends Component<Props$a, Spreadsheet
|
|
|
11970
12119
|
static template: string;
|
|
11971
12120
|
static components: {
|
|
11972
12121
|
Section: typeof Section;
|
|
12122
|
+
Select: typeof Select;
|
|
11973
12123
|
};
|
|
11974
12124
|
static props: {
|
|
11975
12125
|
chartId: StringConstructor;
|
|
11976
12126
|
definition: ObjectConstructor;
|
|
11977
12127
|
updateChart: FunctionConstructor;
|
|
11978
12128
|
};
|
|
11979
|
-
updateSelectedRegion(
|
|
12129
|
+
updateSelectedRegion(value: string): void;
|
|
11980
12130
|
get availableRegions(): GeoChartRegion[];
|
|
11981
12131
|
get selectedRegion(): string;
|
|
12132
|
+
get regionOptions(): ValueAndLabel[];
|
|
11982
12133
|
}
|
|
11983
12134
|
|
|
11984
12135
|
declare class LineChartDesignPanel extends GenericZoomableChartDesignPanel<ChartSidePanelProps<LineChartDefinition>> {
|
|
@@ -12241,7 +12392,7 @@ declare class ScorecardChart extends AbstractChart {
|
|
|
12241
12392
|
getContextCreation(): ChartCreationContext;
|
|
12242
12393
|
private getDefinitionWithSpecificRanges;
|
|
12243
12394
|
getDefinitionForExcel(): undefined;
|
|
12244
|
-
updateRanges(applyChange:
|
|
12395
|
+
updateRanges({ applyChange }: RangeAdapterFunctions): ScorecardChart;
|
|
12245
12396
|
}
|
|
12246
12397
|
|
|
12247
12398
|
declare class BarChart extends AbstractChart {
|
|
@@ -12268,7 +12419,7 @@ declare class BarChart extends AbstractChart {
|
|
|
12268
12419
|
getDefinition(): BarChartDefinition;
|
|
12269
12420
|
private getDefinitionWithSpecificDataSets;
|
|
12270
12421
|
getDefinitionForExcel(): ExcelChartDefinition | undefined;
|
|
12271
|
-
updateRanges(applyChange:
|
|
12422
|
+
updateRanges({ applyChange }: RangeAdapterFunctions): BarChart;
|
|
12272
12423
|
}
|
|
12273
12424
|
|
|
12274
12425
|
declare class GaugeChart extends AbstractChart {
|
|
@@ -12286,7 +12437,7 @@ declare class GaugeChart extends AbstractChart {
|
|
|
12286
12437
|
private getDefinitionWithSpecificRanges;
|
|
12287
12438
|
getDefinitionForExcel(): undefined;
|
|
12288
12439
|
getContextCreation(): ChartCreationContext;
|
|
12289
|
-
updateRanges(applyChange
|
|
12440
|
+
updateRanges({ applyChange, adaptFormulaString }: RangeAdapterFunctions): GaugeChart;
|
|
12290
12441
|
}
|
|
12291
12442
|
|
|
12292
12443
|
declare class LineChart extends AbstractChart {
|
|
@@ -12313,7 +12464,7 @@ declare class LineChart extends AbstractChart {
|
|
|
12313
12464
|
getDefinition(): LineChartDefinition;
|
|
12314
12465
|
private getDefinitionWithSpecificDataSets;
|
|
12315
12466
|
getContextCreation(): ChartCreationContext;
|
|
12316
|
-
updateRanges(applyChange:
|
|
12467
|
+
updateRanges({ applyChange }: RangeAdapterFunctions): LineChart;
|
|
12317
12468
|
getDefinitionForExcel(): ExcelChartDefinition | undefined;
|
|
12318
12469
|
duplicateInDuplicatedSheet(newSheetId: UID): LineChart;
|
|
12319
12470
|
copyInSheetId(sheetId: UID): LineChart;
|
|
@@ -12340,7 +12491,7 @@ declare class PieChart extends AbstractChart {
|
|
|
12340
12491
|
duplicateInDuplicatedSheet(newSheetId: UID): PieChart;
|
|
12341
12492
|
copyInSheetId(sheetId: UID): PieChart;
|
|
12342
12493
|
getDefinitionForExcel(): ExcelChartDefinition | undefined;
|
|
12343
|
-
updateRanges(applyChange:
|
|
12494
|
+
updateRanges({ applyChange }: RangeAdapterFunctions): PieChart;
|
|
12344
12495
|
}
|
|
12345
12496
|
|
|
12346
12497
|
declare class WaterfallChart extends AbstractChart {
|
|
@@ -12372,7 +12523,7 @@ declare class WaterfallChart extends AbstractChart {
|
|
|
12372
12523
|
getDefinition(): WaterfallChartDefinition;
|
|
12373
12524
|
private getDefinitionWithSpecificDataSets;
|
|
12374
12525
|
getDefinitionForExcel(): ExcelChartDefinition | undefined;
|
|
12375
|
-
updateRanges(applyChange:
|
|
12526
|
+
updateRanges({ applyChange }: RangeAdapterFunctions): WaterfallChart;
|
|
12376
12527
|
}
|
|
12377
12528
|
|
|
12378
12529
|
declare function getPivotHighlights(getters: Getters, pivotId: UID): Highlight$1[];
|
|
@@ -12863,7 +13014,6 @@ declare class SidePanel extends Component<SidePanelProps, SpreadsheetChildEnv> {
|
|
|
12863
13014
|
};
|
|
12864
13015
|
spreadsheetRect: Rect;
|
|
12865
13016
|
getTitle(): string;
|
|
12866
|
-
get pinInfoMessage(): string;
|
|
12867
13017
|
}
|
|
12868
13018
|
|
|
12869
13019
|
declare class SidePanels extends Component<{}, SpreadsheetChildEnv> {
|
|
@@ -13476,7 +13626,7 @@ declare function addFunction(functionName: string, functionDescription: AddFunct
|
|
|
13476
13626
|
declare const constants: {
|
|
13477
13627
|
DEFAULT_LOCALE: Locale;
|
|
13478
13628
|
HIGHLIGHT_COLOR: string;
|
|
13479
|
-
|
|
13629
|
+
PIVOT_STATIC_TABLE_CONFIG: {
|
|
13480
13630
|
hasFilters: boolean;
|
|
13481
13631
|
totalRow: boolean;
|
|
13482
13632
|
firstColumn: boolean;
|
|
@@ -13487,6 +13637,7 @@ declare const constants: {
|
|
|
13487
13637
|
styleId: string;
|
|
13488
13638
|
automaticAutofill: boolean;
|
|
13489
13639
|
};
|
|
13640
|
+
PIVOT_INSERT_TABLE_STYLE_ID: string;
|
|
13490
13641
|
ChartTerms: {
|
|
13491
13642
|
[key: string]: any;
|
|
13492
13643
|
ColorScales: Record<Extract<ChartColorScale, string>, string>;
|
|
@@ -13667,4 +13818,4 @@ declare const chartHelpers: {
|
|
|
13667
13818
|
WaterfallChart: typeof WaterfallChart;
|
|
13668
13819
|
};
|
|
13669
13820
|
|
|
13670
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BadExpressionError, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, BoundedRange, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartColorScale, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithColorScaleDefinition, ChartWithDataSetDefinition, ChartWithTitleDefinition, CircularDependencyError, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, 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, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DivisionByZeroError, DuplicateCarouselChartCommand, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, ErrorValue, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image$1 as Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, InvalidReferenceError, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NEXT_VALUE, NewLocalStateUpdateEvent, NotAvailableError, NotContainsTextRule, NotificationType, NumberCell, NumberTooLargeError, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PREVIOUS_VALUE, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotStyle, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position, PositionDependentCommand, RGBA, Range, RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, SetZoomCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplillBlockedError, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetClipboardData, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Criterion, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UnknownFunctionError, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, categories, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, createAutocompleteArgumentsProvider, errorTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidSubtotalFormulasCommands, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, schemeToColorScale, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
13821
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyFormulaRangeChangeResult, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BadExpressionError, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, BoundedRange, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartColorScale, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithColorScaleDefinition, ChartWithDataSetDefinition, ChartWithTitleDefinition, CircularDependencyError, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, 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, CopyPasteCellsOnZoneCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DivisionByZeroError, DuplicateCarouselChartCommand, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, ErrorValue, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image$1 as Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, InvalidReferenceError, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NEXT_VALUE, NewLocalStateUpdateEvent, NotAvailableError, NotContainsTextRule, NotificationType, NumberCell, NumberTooLargeError, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PREVIOUS_VALUE, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotStyle, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position, PositionDependentCommand, RGBA, Range, RangeAdapter, RangeAdapterFunctions, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, SetZoomCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplillBlockedError, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetClipboardData, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableMetaData, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Criterion, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UnknownFunctionError, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, categories, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, createAutocompleteArgumentsProvider, errorTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidSubtotalFormulasCommands, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, schemeToColorScale, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|