@odoo/o-spreadsheet 18.4.0-alpha.6 → 18.4.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/o-spreadsheet.cjs.js +1320 -669
- package/dist/o-spreadsheet.d.ts +337 -166
- package/dist/o-spreadsheet.esm.js +1320 -670
- package/dist/o-spreadsheet.iife.js +1320 -669
- package/dist/o-spreadsheet.iife.min.js +476 -495
- package/dist/o_spreadsheet.xml +210 -156
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as chart_js from 'chart.js';
|
|
2
|
-
import { ChartConfiguration, ChartDataset, CoreChartOptions, Scriptable, Color as Color$1, ScriptableContext, FontSpec, Point, ChartType as ChartType$1 } from 'chart.js';
|
|
2
|
+
import { ChartConfiguration, ChartDataset, CoreChartOptions, Scriptable, Color as Color$1, ScriptableContext, FontSpec, Point, ChartType as ChartType$1, ChartMeta } from 'chart.js';
|
|
3
3
|
import * as ChartGeo from 'chartjs-chart-geo';
|
|
4
|
+
import * as GeoJSON$1 from 'geojson';
|
|
4
5
|
import * as _odoo_owl from '@odoo/owl';
|
|
5
6
|
import { ComponentConstructor, Component } from '@odoo/owl';
|
|
6
|
-
import * as GeoJSON$1 from 'geojson';
|
|
7
7
|
import * as chart_js_dist_types_utils from 'chart.js/dist/types/utils';
|
|
8
8
|
import * as chart_js_dist_types_geometric from 'chart.js/dist/types/geometric';
|
|
9
9
|
|
|
@@ -33,10 +33,12 @@ interface ExcelFigureSize {
|
|
|
33
33
|
type ResizeDirection = -1 | 0 | 1;
|
|
34
34
|
|
|
35
35
|
type ImageSVG = {
|
|
36
|
-
path: string;
|
|
37
36
|
width: number;
|
|
38
37
|
height: number;
|
|
39
|
-
|
|
38
|
+
paths: {
|
|
39
|
+
path: string;
|
|
40
|
+
fillColor: Color;
|
|
41
|
+
}[];
|
|
40
42
|
};
|
|
41
43
|
interface Image$1 {
|
|
42
44
|
path: string;
|
|
@@ -759,6 +761,9 @@ interface Client {
|
|
|
759
761
|
interface ClientWithPosition extends Client {
|
|
760
762
|
position: ClientPosition;
|
|
761
763
|
}
|
|
764
|
+
interface ClientWithColor extends Client {
|
|
765
|
+
color: Color;
|
|
766
|
+
}
|
|
762
767
|
interface ClientPosition {
|
|
763
768
|
sheetId: UID;
|
|
764
769
|
col: HeaderIndex;
|
|
@@ -1083,6 +1088,11 @@ interface DimensionTreeNode {
|
|
|
1083
1088
|
width: number;
|
|
1084
1089
|
}
|
|
1085
1090
|
type DimensionTree = DimensionTreeNode[];
|
|
1091
|
+
interface PivotVisibilityOptions {
|
|
1092
|
+
displayColumnHeaders: boolean;
|
|
1093
|
+
displayTotals: boolean;
|
|
1094
|
+
displayMeasuresRow: boolean;
|
|
1095
|
+
}
|
|
1086
1096
|
|
|
1087
1097
|
interface GenericCriterion {
|
|
1088
1098
|
type: GenericCriterionType;
|
|
@@ -1418,6 +1428,8 @@ declare class Revision implements RevisionData {
|
|
|
1418
1428
|
get changes(): readonly HistoryChange[];
|
|
1419
1429
|
}
|
|
1420
1430
|
|
|
1431
|
+
declare class ClientDisconnectedError extends Error {
|
|
1432
|
+
}
|
|
1421
1433
|
declare class Session extends EventBus<CollaborativeEvent> {
|
|
1422
1434
|
private revisions;
|
|
1423
1435
|
private transportService;
|
|
@@ -2241,11 +2253,12 @@ declare class FilterEvaluationPlugin extends UIPlugin {
|
|
|
2241
2253
|
*/
|
|
2242
2254
|
declare class GridSelectionPlugin extends UIPlugin {
|
|
2243
2255
|
static layers: readonly ["Selection"];
|
|
2244
|
-
static getters: readonly ["getActiveSheet", "getActiveSheetId", "getActiveSheetName", "getActiveCell", "getActiveCols", "getActiveRows", "getCurrentStyle", "getSelectedZones", "getSelectedZone", "getSelectedCells", "getSelectedFigureId", "getSelection", "getActivePosition", "getSheetPosition", "isSingleColSelected", "getElementsFromSelection", "tryGetActiveSheetId", "isGridSelectionActive"];
|
|
2256
|
+
static getters: readonly ["getActiveSheet", "getActiveSheetId", "getActiveSheetName", "getActiveCell", "getActiveCols", "getActiveRows", "getCurrentStyle", "getSelectedZones", "getSelectedZone", "getSelectedCells", "getSelectedFigureId", "getSelection", "getActivePosition", "getSheetPosition", "isSingleColSelected", "getElementsFromSelection", "tryGetActiveSheetId", "isGridSelectionActive", "getSelectecUnboundedZone"];
|
|
2245
2257
|
private gridSelection;
|
|
2246
2258
|
private selectedFigureId;
|
|
2247
2259
|
private sheetsData;
|
|
2248
2260
|
private moveClient;
|
|
2261
|
+
private isUnbounded;
|
|
2249
2262
|
activeSheet: Sheet;
|
|
2250
2263
|
constructor(config: UIPluginConfig);
|
|
2251
2264
|
allowDispatch(cmd: LocalCommand): CommandResult;
|
|
@@ -2263,7 +2276,8 @@ declare class GridSelectionPlugin extends UIPlugin {
|
|
|
2263
2276
|
getCurrentStyle(): Style;
|
|
2264
2277
|
getSelectedZones(): Zone[];
|
|
2265
2278
|
getSelectedZone(): Zone;
|
|
2266
|
-
|
|
2279
|
+
getSelectecUnboundedZone(): UnboundedZone;
|
|
2280
|
+
getSelection(): Selection$1;
|
|
2267
2281
|
getSelectedCells(): EvaluatedCell[];
|
|
2268
2282
|
getSelectedFigureId(): UID | null;
|
|
2269
2283
|
getActivePosition(): CellPosition;
|
|
@@ -2437,7 +2451,7 @@ declare class InternalViewport {
|
|
|
2437
2451
|
*
|
|
2438
2452
|
*/
|
|
2439
2453
|
declare class SheetViewPlugin extends UIPlugin {
|
|
2440
|
-
static getters: readonly ["getColIndex", "getRowIndex", "getActiveMainViewport", "getSheetViewDimension", "getSheetViewDimensionWithHeaders", "getMainViewportRect", "isVisibleInViewport", "getEdgeScrollCol", "getEdgeScrollRow", "getVisibleFigures", "getVisibleRect", "getVisibleRectWithoutHeaders", "getVisibleCellPositions", "getColRowOffsetInViewport", "getMainViewportCoordinates", "getActiveSheetScrollInfo", "getSheetViewVisibleCols", "getSheetViewVisibleRows", "getFrozenSheetViewRatio", "isPixelPositionVisible", "getColDimensionsInViewport", "getRowDimensionsInViewport", "getAllActiveViewportsZonesAndRect", "getRect", "getFigureUI", "getPositionAnchorOffset"];
|
|
2454
|
+
static getters: readonly ["getColIndex", "getRowIndex", "getActiveMainViewport", "getSheetViewDimension", "getSheetViewDimensionWithHeaders", "getMainViewportRect", "isVisibleInViewport", "getEdgeScrollCol", "getEdgeScrollRow", "getVisibleFigures", "getVisibleRect", "getVisibleRectWithoutHeaders", "getVisibleCellPositions", "getColRowOffsetInViewport", "getMainViewportCoordinates", "getActiveSheetScrollInfo", "getSheetViewVisibleCols", "getSheetViewVisibleRows", "getFrozenSheetViewRatio", "isPixelPositionVisible", "getColDimensionsInViewport", "getRowDimensionsInViewport", "getAllActiveViewportsZonesAndRect", "getRect", "getFigureUI", "getPositionAnchorOffset", "getGridOffset"];
|
|
2441
2455
|
private viewports;
|
|
2442
2456
|
/**
|
|
2443
2457
|
* The viewport dimensions are usually set by one of the components
|
|
@@ -2470,6 +2484,7 @@ declare class SheetViewPlugin extends UIPlugin {
|
|
|
2470
2484
|
getRowIndex(y: Pixel): HeaderIndex;
|
|
2471
2485
|
getSheetViewDimensionWithHeaders(): DOMDimension;
|
|
2472
2486
|
getSheetViewDimension(): DOMDimension;
|
|
2487
|
+
getGridOffset(): DOMCoordinates;
|
|
2473
2488
|
/** type as pane, not viewport but basically pane extends viewport */
|
|
2474
2489
|
getActiveMainViewport(): Viewport;
|
|
2475
2490
|
/**
|
|
@@ -3599,7 +3614,7 @@ interface AnchorZone {
|
|
|
3599
3614
|
zone: Zone;
|
|
3600
3615
|
cell: Position$1;
|
|
3601
3616
|
}
|
|
3602
|
-
interface Selection {
|
|
3617
|
+
interface Selection$1 {
|
|
3603
3618
|
anchor: AnchorZone;
|
|
3604
3619
|
zones: Zone[];
|
|
3605
3620
|
}
|
|
@@ -3737,8 +3752,7 @@ interface Merge extends Zone {
|
|
|
3737
3752
|
id: number;
|
|
3738
3753
|
}
|
|
3739
3754
|
interface Highlight$1 {
|
|
3740
|
-
|
|
3741
|
-
sheetId: UID;
|
|
3755
|
+
range: Range;
|
|
3742
3756
|
color: Color;
|
|
3743
3757
|
interactive?: boolean;
|
|
3744
3758
|
thinLine?: boolean;
|
|
@@ -4283,6 +4297,7 @@ interface SpreadsheetChildEnv extends NotificationStoreMethods {
|
|
|
4283
4297
|
loadLocales: () => Promise<Locale[]>;
|
|
4284
4298
|
getStore: Get;
|
|
4285
4299
|
isSmall: boolean;
|
|
4300
|
+
isMobile: () => boolean;
|
|
4286
4301
|
}
|
|
4287
4302
|
|
|
4288
4303
|
declare class RangeAdapter implements CommandHandler<CoreCommand> {
|
|
@@ -4836,10 +4851,10 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
|
|
|
4836
4851
|
exportForExcel(data: ExcelWorkbookData): void;
|
|
4837
4852
|
}
|
|
4838
4853
|
|
|
4839
|
-
interface State$
|
|
4854
|
+
interface State$6 {
|
|
4840
4855
|
groups: Record<UID, Record<Dimension, HeaderGroup[]>>;
|
|
4841
4856
|
}
|
|
4842
|
-
declare class HeaderGroupingPlugin extends CorePlugin<State$
|
|
4857
|
+
declare class HeaderGroupingPlugin extends CorePlugin<State$6> {
|
|
4843
4858
|
static getters: readonly ["getHeaderGroups", "getGroupsLayers", "getVisibleGroupLayers", "getHeaderGroup", "getHeaderGroupsInZone", "isGroupFolded", "isRowFolded", "isColFolded"];
|
|
4844
4859
|
private readonly groups;
|
|
4845
4860
|
allowDispatch(cmd: CoreCommand): CommandResult;
|
|
@@ -5110,6 +5125,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
5110
5125
|
private replaceMeasureFormula;
|
|
5111
5126
|
private checkSortedColumnInMeasures;
|
|
5112
5127
|
private checkDuplicatedMeasureIds;
|
|
5128
|
+
private repairSortedColumn;
|
|
5113
5129
|
/**
|
|
5114
5130
|
* Import the pivots
|
|
5115
5131
|
*/
|
|
@@ -5602,22 +5618,24 @@ declare class Registry<T> {
|
|
|
5602
5618
|
}
|
|
5603
5619
|
|
|
5604
5620
|
interface GridIcon {
|
|
5621
|
+
type: string;
|
|
5605
5622
|
position: CellPosition;
|
|
5606
5623
|
horizontalAlign: Exclude<Align, undefined>;
|
|
5607
5624
|
size: number;
|
|
5608
5625
|
margin: number;
|
|
5609
|
-
component?: ComponentConstructor<{
|
|
5610
|
-
cellPosition: CellPosition;
|
|
5611
|
-
}, SpreadsheetChildEnv>;
|
|
5612
5626
|
svg?: ImageSVG;
|
|
5627
|
+
hoverSvg?: ImageSVG;
|
|
5613
5628
|
priority: number;
|
|
5629
|
+
onClick?: (position: CellPosition, env: SpreadsheetChildEnv) => void;
|
|
5614
5630
|
}
|
|
5615
5631
|
|
|
5616
5632
|
declare class CellIconPlugin extends CoreViewPlugin {
|
|
5617
|
-
static getters: readonly ["doesCellHaveGridIcon", "getCellIcons"];
|
|
5633
|
+
static getters: readonly ["doesCellHaveGridIcon", "getCellIcons", "getCellIconRect"];
|
|
5618
5634
|
private cellIconsCache;
|
|
5619
5635
|
handle(cmd: Command): void;
|
|
5620
5636
|
getCellIcons(position: CellPosition): GridIcon[];
|
|
5637
|
+
getCellIconRect(icon: GridIcon): Rect;
|
|
5638
|
+
private getIconHorizontalPosition;
|
|
5621
5639
|
private computeCellIcons;
|
|
5622
5640
|
doesCellHaveGridIcon(position: CellPosition): boolean;
|
|
5623
5641
|
}
|
|
@@ -5760,7 +5778,8 @@ declare class SpreadsheetPivotTable {
|
|
|
5760
5778
|
* Get the number of columns leafs (i.e. the number of the last row of columns)
|
|
5761
5779
|
*/
|
|
5762
5780
|
getNumberOfDataColumns(): number;
|
|
5763
|
-
|
|
5781
|
+
private getSkippedRows;
|
|
5782
|
+
getPivotCells(visibilityOptions?: PivotVisibilityOptions): PivotTableCell[][];
|
|
5764
5783
|
getRowTree(): DimensionTree;
|
|
5765
5784
|
getColTree(): DimensionTree;
|
|
5766
5785
|
private isTotalRow;
|
|
@@ -6013,20 +6032,18 @@ declare class AutomaticSumPlugin extends UIPlugin {
|
|
|
6013
6032
|
private transpose;
|
|
6014
6033
|
}
|
|
6015
6034
|
|
|
6016
|
-
interface ClientToDisplay extends
|
|
6017
|
-
color: Color;
|
|
6035
|
+
interface ClientToDisplay extends Required<Client> {
|
|
6018
6036
|
}
|
|
6019
6037
|
declare class CollaborativePlugin extends UIPlugin {
|
|
6020
6038
|
static getters: readonly ["getClientsToDisplay", "getClient", "getCurrentClient", "getConnectedClients", "isFullySynchronized"];
|
|
6021
6039
|
static layers: readonly ["Selection"];
|
|
6022
|
-
private availableColors;
|
|
6023
6040
|
private colors;
|
|
6024
6041
|
private session;
|
|
6025
6042
|
constructor(config: UIPluginConfig);
|
|
6026
6043
|
private isPositionValid;
|
|
6027
6044
|
getClient(clientId: ClientId): Client;
|
|
6028
6045
|
getCurrentClient(): Client;
|
|
6029
|
-
getConnectedClients():
|
|
6046
|
+
getConnectedClients(): ClientWithColor[];
|
|
6030
6047
|
isFullySynchronized(): boolean;
|
|
6031
6048
|
/**
|
|
6032
6049
|
* Get the list of others connected clients which are present in the same sheet
|
|
@@ -6104,7 +6121,7 @@ declare class UIOptionsPlugin extends UIPlugin {
|
|
|
6104
6121
|
}
|
|
6105
6122
|
|
|
6106
6123
|
declare class SheetUIPlugin extends UIPlugin {
|
|
6107
|
-
static getters: readonly ["getCellWidth", "getTextWidth", "getCellText", "getCellMultiLineText", "getContiguousZone"];
|
|
6124
|
+
static getters: readonly ["getCellWidth", "getTextWidth", "getCellText", "getCellMultiLineText", "getContiguousZone", "computeTextYCoordinate"];
|
|
6108
6125
|
private ctx;
|
|
6109
6126
|
allowDispatch(cmd: LocalCommand): CommandResult | CommandResult[];
|
|
6110
6127
|
handle(cmd: Command): void;
|
|
@@ -6122,6 +6139,12 @@ declare class SheetUIPlugin extends UIPlugin {
|
|
|
6122
6139
|
wrapText: boolean;
|
|
6123
6140
|
maxWidth: number;
|
|
6124
6141
|
}): string[];
|
|
6142
|
+
/** Computes the vertical start point from which a text line should be draw in a cell.
|
|
6143
|
+
*
|
|
6144
|
+
* Note that in case the cell does not have enough spaces to display its text lines,
|
|
6145
|
+
* (wrapping cell case) then the vertical align should be at the top.
|
|
6146
|
+
* */
|
|
6147
|
+
computeTextYCoordinate(cellRect: Rect, textLineHeight: number, verticalAlign?: VerticalAlign, numberOfLines?: number): number;
|
|
6125
6148
|
/**
|
|
6126
6149
|
* Expands the given zone until bordered by empty cells or reached the sheet boundaries.
|
|
6127
6150
|
*/
|
|
@@ -6665,7 +6688,7 @@ interface ChartShowValuesPluginOptions {
|
|
|
6665
6688
|
showValues: boolean;
|
|
6666
6689
|
background?: Color;
|
|
6667
6690
|
horizontal?: boolean;
|
|
6668
|
-
callback: (value: number | string,
|
|
6691
|
+
callback: (value: number | string, dataset: ChartMeta, index: number) => string;
|
|
6669
6692
|
}
|
|
6670
6693
|
declare module "chart.js" {
|
|
6671
6694
|
interface PluginOptionsByType<TType extends ChartType$1> {
|
|
@@ -7766,7 +7789,7 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7766
7789
|
private computePopoverAnchorRect;
|
|
7767
7790
|
}
|
|
7768
7791
|
|
|
7769
|
-
interface State$
|
|
7792
|
+
interface State$5 {
|
|
7770
7793
|
isOpen: boolean;
|
|
7771
7794
|
}
|
|
7772
7795
|
interface Props$17 {
|
|
@@ -7798,7 +7821,7 @@ declare class FontSizeEditor extends Component<Props$17, SpreadsheetChildEnv> {
|
|
|
7798
7821
|
Popover: typeof Popover;
|
|
7799
7822
|
};
|
|
7800
7823
|
fontSizes: number[];
|
|
7801
|
-
dropdown: State$
|
|
7824
|
+
dropdown: State$5;
|
|
7802
7825
|
private inputRef;
|
|
7803
7826
|
private rootEditorRef;
|
|
7804
7827
|
private fontSizeListRef;
|
|
@@ -8589,6 +8612,8 @@ interface CellComposerProps {
|
|
|
8589
8612
|
isDefaultFocus?: boolean;
|
|
8590
8613
|
composerStore: Store<CellComposerStore>;
|
|
8591
8614
|
placeholder?: string;
|
|
8615
|
+
inputMode?: ElementContentEditable["inputMode"];
|
|
8616
|
+
showAssistant?: boolean;
|
|
8592
8617
|
}
|
|
8593
8618
|
interface ComposerState {
|
|
8594
8619
|
positionStart: number;
|
|
@@ -8636,6 +8661,14 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8636
8661
|
type: StringConstructor;
|
|
8637
8662
|
optional: boolean;
|
|
8638
8663
|
};
|
|
8664
|
+
inputMode: {
|
|
8665
|
+
type: StringConstructor;
|
|
8666
|
+
optional: boolean;
|
|
8667
|
+
};
|
|
8668
|
+
showAssistant: {
|
|
8669
|
+
type: BooleanConstructor;
|
|
8670
|
+
optional: boolean;
|
|
8671
|
+
};
|
|
8639
8672
|
};
|
|
8640
8673
|
static components: {
|
|
8641
8674
|
TextValueProvider: typeof TextValueProvider;
|
|
@@ -8645,6 +8678,8 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8645
8678
|
static defaultProps: {
|
|
8646
8679
|
inputStyle: string;
|
|
8647
8680
|
isDefaultFocus: boolean;
|
|
8681
|
+
inputMode: string;
|
|
8682
|
+
showAssistant: boolean;
|
|
8648
8683
|
};
|
|
8649
8684
|
private DOMFocusableElementStore;
|
|
8650
8685
|
composerRef: {
|
|
@@ -9029,6 +9064,11 @@ declare class SidePanelStore extends SpreadsheetStore {
|
|
|
9029
9064
|
initialPanelProps: SidePanelProps;
|
|
9030
9065
|
componentTag: string;
|
|
9031
9066
|
panelSize: number;
|
|
9067
|
+
screenWidthStore: {
|
|
9068
|
+
readonly setSmallThreshhold: (isSmall: () => boolean) => void;
|
|
9069
|
+
readonly mutators: readonly ["setSmallThreshhold"];
|
|
9070
|
+
readonly isSmall: boolean;
|
|
9071
|
+
};
|
|
9032
9072
|
get isOpen(): boolean;
|
|
9033
9073
|
get panelProps(): SidePanelProps;
|
|
9034
9074
|
get panelKey(): string | undefined;
|
|
@@ -9156,6 +9196,68 @@ declare class ScorecardChart$1 extends Component<Props$O, SpreadsheetChildEnv> {
|
|
|
9156
9196
|
}
|
|
9157
9197
|
|
|
9158
9198
|
type MenuItemOrSeparator = Action | "separator";
|
|
9199
|
+
interface MenuProps {
|
|
9200
|
+
menuItems: Action[];
|
|
9201
|
+
onClose: () => void;
|
|
9202
|
+
onScroll?: (ev: CustomEvent) => void;
|
|
9203
|
+
onClickMenu?: (menu: Action, ev: CustomEvent) => void;
|
|
9204
|
+
onMouseEnter?: (menu: Action, ev: PointerEvent) => void;
|
|
9205
|
+
onMouseOver?: (menu: Action, ev: PointerEvent) => void;
|
|
9206
|
+
onMouseLeave?: (menu: Action, ev: PointerEvent) => void;
|
|
9207
|
+
isActive?: (menu: Action) => boolean;
|
|
9208
|
+
width?: number;
|
|
9209
|
+
}
|
|
9210
|
+
declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
|
|
9211
|
+
static template: string;
|
|
9212
|
+
static props: {
|
|
9213
|
+
menuItems: ArrayConstructor;
|
|
9214
|
+
onClose: FunctionConstructor;
|
|
9215
|
+
onClickMenu: {
|
|
9216
|
+
type: FunctionConstructor;
|
|
9217
|
+
optional: boolean;
|
|
9218
|
+
};
|
|
9219
|
+
onMouseEnter: {
|
|
9220
|
+
type: FunctionConstructor;
|
|
9221
|
+
optional: boolean;
|
|
9222
|
+
};
|
|
9223
|
+
onMouseOver: {
|
|
9224
|
+
type: FunctionConstructor;
|
|
9225
|
+
optional: boolean;
|
|
9226
|
+
};
|
|
9227
|
+
onMouseLeave: {
|
|
9228
|
+
type: FunctionConstructor;
|
|
9229
|
+
optional: boolean;
|
|
9230
|
+
};
|
|
9231
|
+
width: {
|
|
9232
|
+
type: NumberConstructor;
|
|
9233
|
+
optional: boolean;
|
|
9234
|
+
};
|
|
9235
|
+
isActive: {
|
|
9236
|
+
type: FunctionConstructor;
|
|
9237
|
+
optional: boolean;
|
|
9238
|
+
};
|
|
9239
|
+
onScroll: {
|
|
9240
|
+
type: FunctionConstructor;
|
|
9241
|
+
optional: boolean;
|
|
9242
|
+
};
|
|
9243
|
+
};
|
|
9244
|
+
static components: {};
|
|
9245
|
+
static defaultProps: {};
|
|
9246
|
+
private hoveredMenu;
|
|
9247
|
+
setup(): void;
|
|
9248
|
+
get menuItemsAndSeparators(): MenuItemOrSeparator[];
|
|
9249
|
+
get childrenHaveIcon(): boolean;
|
|
9250
|
+
getIconName(menu: Action): string;
|
|
9251
|
+
getColor(menu: Action): string;
|
|
9252
|
+
getIconColor(menu: Action): string;
|
|
9253
|
+
getName(menu: Action): string;
|
|
9254
|
+
isRoot(menu: Action): boolean;
|
|
9255
|
+
isEnabled(menu: Action): boolean;
|
|
9256
|
+
get menuStyle(): string;
|
|
9257
|
+
onMouseEnter(menu: Action, ev: PointerEvent): void;
|
|
9258
|
+
onMouseLeave(menu: Action, ev: PointerEvent): void;
|
|
9259
|
+
}
|
|
9260
|
+
|
|
9159
9261
|
interface Props$N {
|
|
9160
9262
|
anchorRect: Rect;
|
|
9161
9263
|
popoverPositioning: PopoverPropsPosition;
|
|
@@ -9176,7 +9278,7 @@ interface MenuState {
|
|
|
9176
9278
|
menuItems: Action[];
|
|
9177
9279
|
isHoveringChild?: boolean;
|
|
9178
9280
|
}
|
|
9179
|
-
declare class
|
|
9281
|
+
declare class MenuPopover extends Component<Props$N, SpreadsheetChildEnv> {
|
|
9180
9282
|
static template: string;
|
|
9181
9283
|
static props: {
|
|
9182
9284
|
anchorRect: ObjectConstructor;
|
|
@@ -9212,6 +9314,7 @@ declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
9212
9314
|
};
|
|
9213
9315
|
};
|
|
9214
9316
|
static components: {
|
|
9317
|
+
MenuPopover: typeof MenuPopover;
|
|
9215
9318
|
Menu: typeof Menu;
|
|
9216
9319
|
Popover: typeof Popover;
|
|
9217
9320
|
};
|
|
@@ -9224,7 +9327,7 @@ declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
9224
9327
|
private hoveredMenu;
|
|
9225
9328
|
private openingTimeOut;
|
|
9226
9329
|
setup(): void;
|
|
9227
|
-
get
|
|
9330
|
+
get menuProps(): MenuProps;
|
|
9228
9331
|
get subMenuAnchorRect(): Rect;
|
|
9229
9332
|
get popoverProps(): PopoverProps;
|
|
9230
9333
|
get childrenHaveIcon(): boolean;
|
|
@@ -9244,13 +9347,12 @@ declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
9244
9347
|
* correct position according to available surrounding space.
|
|
9245
9348
|
*/
|
|
9246
9349
|
private openSubMenu;
|
|
9247
|
-
isParentMenu
|
|
9350
|
+
private isParentMenu;
|
|
9248
9351
|
private closeSubMenu;
|
|
9249
9352
|
onClickMenu(menu: Action, ev: MouseEvent): void;
|
|
9250
9353
|
onMouseOver(menu: Action, ev: MouseEvent): void;
|
|
9251
9354
|
onMouseOverMainMenu(): void;
|
|
9252
9355
|
onMouseOverChildMenu(): void;
|
|
9253
|
-
onMouseEnter(menu: Action, ev: MouseEvent): void;
|
|
9254
9356
|
onMouseLeave(menu: Action): void;
|
|
9255
9357
|
get menuStyle(): string;
|
|
9256
9358
|
}
|
|
@@ -9285,7 +9387,7 @@ declare class FigureComponent extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
9285
9387
|
};
|
|
9286
9388
|
};
|
|
9287
9389
|
static components: {
|
|
9288
|
-
|
|
9390
|
+
MenuPopover: typeof MenuPopover;
|
|
9289
9391
|
};
|
|
9290
9392
|
static defaultProps: {
|
|
9291
9393
|
onFigureDeleted: () => void;
|
|
@@ -9305,6 +9407,7 @@ declare class FigureComponent extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
9305
9407
|
setup(): void;
|
|
9306
9408
|
clickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9307
9409
|
onMouseDown(ev: MouseEvent): void;
|
|
9410
|
+
onClick(ev: MouseEvent): void;
|
|
9308
9411
|
onKeyDown(ev: KeyboardEvent): void;
|
|
9309
9412
|
private postionInBoundary;
|
|
9310
9413
|
onContextMenu(ev: MouseEvent): void;
|
|
@@ -9325,7 +9428,7 @@ interface MenuItem {
|
|
|
9325
9428
|
declare class ChartDashboardMenu extends Component<Props$L, SpreadsheetChildEnv> {
|
|
9326
9429
|
static template: string;
|
|
9327
9430
|
static components: {
|
|
9328
|
-
|
|
9431
|
+
MenuPopover: typeof MenuPopover;
|
|
9329
9432
|
};
|
|
9330
9433
|
static props: {
|
|
9331
9434
|
figureUI: ObjectConstructor;
|
|
@@ -9371,6 +9474,8 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
|
|
|
9371
9474
|
clear(): "noStateChange" | undefined;
|
|
9372
9475
|
}
|
|
9373
9476
|
|
|
9477
|
+
type DnDDirection = "all" | "vertical" | "horizontal";
|
|
9478
|
+
|
|
9374
9479
|
interface Props$J {
|
|
9375
9480
|
isVisible: boolean;
|
|
9376
9481
|
position: Position;
|
|
@@ -9379,7 +9484,7 @@ interface Position {
|
|
|
9379
9484
|
top: HeaderIndex;
|
|
9380
9485
|
left: HeaderIndex;
|
|
9381
9486
|
}
|
|
9382
|
-
interface State$
|
|
9487
|
+
interface State$4 {
|
|
9383
9488
|
position: Position;
|
|
9384
9489
|
handler: boolean;
|
|
9385
9490
|
}
|
|
@@ -9389,12 +9494,12 @@ declare class Autofill extends Component<Props$J, SpreadsheetChildEnv> {
|
|
|
9389
9494
|
position: ObjectConstructor;
|
|
9390
9495
|
isVisible: BooleanConstructor;
|
|
9391
9496
|
};
|
|
9392
|
-
state: State$
|
|
9497
|
+
state: State$4;
|
|
9393
9498
|
dragNDropGrid: {
|
|
9394
9499
|
start: (initialPointerCoordinates: {
|
|
9395
9500
|
clientX: number;
|
|
9396
9501
|
clientY: number;
|
|
9397
|
-
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void) => void;
|
|
9502
|
+
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void, startScrollDirection?: DnDDirection) => void;
|
|
9398
9503
|
};
|
|
9399
9504
|
get style(): string;
|
|
9400
9505
|
get handlerStyle(): string;
|
|
@@ -9617,43 +9722,18 @@ declare class GridAddRowsFooter extends Component<Props$G, SpreadsheetChildEnv>
|
|
|
9617
9722
|
private onExternalClick;
|
|
9618
9723
|
}
|
|
9619
9724
|
|
|
9620
|
-
interface GridCellIconProps {
|
|
9621
|
-
icon: GridIcon;
|
|
9622
|
-
verticalAlign?: VerticalAlign;
|
|
9623
|
-
}
|
|
9624
|
-
declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChildEnv> {
|
|
9625
|
-
static template: string;
|
|
9626
|
-
static props: {
|
|
9627
|
-
icon: ObjectConstructor;
|
|
9628
|
-
verticalAlign: {
|
|
9629
|
-
type: StringConstructor;
|
|
9630
|
-
optional: boolean;
|
|
9631
|
-
};
|
|
9632
|
-
slots: ObjectConstructor;
|
|
9633
|
-
};
|
|
9634
|
-
get iconStyle(): string;
|
|
9635
|
-
private getIconVerticalPosition;
|
|
9636
|
-
private getIconHorizontalPosition;
|
|
9637
|
-
isPositionVisible(position: CellPosition): boolean;
|
|
9638
|
-
}
|
|
9639
|
-
|
|
9640
|
-
declare class GridCellIconOverlay extends Component<{}, SpreadsheetChildEnv> {
|
|
9641
|
-
static template: string;
|
|
9642
|
-
static props: {};
|
|
9643
|
-
static components: {
|
|
9644
|
-
GridCellIcon: typeof GridCellIcon;
|
|
9645
|
-
};
|
|
9646
|
-
get icons(): GridIcon[];
|
|
9647
|
-
}
|
|
9648
|
-
|
|
9649
9725
|
interface Props$F {
|
|
9650
9726
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
9651
|
-
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: MouseEvent) => void;
|
|
9727
|
+
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: PointerEvent | MouseEvent) => void;
|
|
9652
9728
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
9653
9729
|
onGridResized: (dimension: Rect) => void;
|
|
9654
9730
|
onGridMoved: (deltaX: Pixel, deltaY: Pixel) => void;
|
|
9655
9731
|
gridOverlayDimensions: string;
|
|
9656
9732
|
onFigureDeleted: () => void;
|
|
9733
|
+
getGridSize: () => {
|
|
9734
|
+
width: number;
|
|
9735
|
+
height: number;
|
|
9736
|
+
};
|
|
9657
9737
|
}
|
|
9658
9738
|
declare class GridOverlay extends Component<Props$F, SpreadsheetChildEnv> {
|
|
9659
9739
|
static template: string;
|
|
@@ -9684,11 +9764,11 @@ declare class GridOverlay extends Component<Props$F, SpreadsheetChildEnv> {
|
|
|
9684
9764
|
type: ObjectConstructor;
|
|
9685
9765
|
optional: boolean;
|
|
9686
9766
|
};
|
|
9767
|
+
getGridSize: FunctionConstructor;
|
|
9687
9768
|
};
|
|
9688
9769
|
static components: {
|
|
9689
9770
|
FiguresContainer: typeof FiguresContainer;
|
|
9690
9771
|
GridAddRowsFooter: typeof GridAddRowsFooter;
|
|
9691
|
-
GridCellIconOverlay: typeof GridCellIconOverlay;
|
|
9692
9772
|
};
|
|
9693
9773
|
static defaultProps: {
|
|
9694
9774
|
onCellDoubleClicked: () => void;
|
|
@@ -9700,14 +9780,19 @@ declare class GridOverlay extends Component<Props$F, SpreadsheetChildEnv> {
|
|
|
9700
9780
|
private gridOverlay;
|
|
9701
9781
|
private cellPopovers;
|
|
9702
9782
|
private paintFormatStore;
|
|
9783
|
+
private hoveredIconStore;
|
|
9703
9784
|
setup(): void;
|
|
9704
9785
|
get gridOverlayEl(): HTMLElement;
|
|
9705
9786
|
get style(): string;
|
|
9706
9787
|
get isPaintingFormat(): boolean;
|
|
9707
|
-
|
|
9788
|
+
onPointerMove(ev: MouseEvent): void;
|
|
9789
|
+
onPointerDown(ev: PointerEvent): void;
|
|
9790
|
+
onClick(ev: MouseEvent): void;
|
|
9791
|
+
onCellClicked(ev: PointerEvent | MouseEvent): void;
|
|
9708
9792
|
onDoubleClick(ev: MouseEvent): void;
|
|
9709
9793
|
onContextMenu(ev: MouseEvent): void;
|
|
9710
9794
|
private getCartesianCoordinates;
|
|
9795
|
+
private getInteractiveIconAtEvent;
|
|
9711
9796
|
}
|
|
9712
9797
|
|
|
9713
9798
|
interface Props$E {
|
|
@@ -9809,7 +9894,7 @@ declare abstract class AbstractResizer extends Component<ResizerProps, Spreadshe
|
|
|
9809
9894
|
start: (initialPointerCoordinates: {
|
|
9810
9895
|
clientX: number;
|
|
9811
9896
|
clientY: number;
|
|
9812
|
-
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void) => void;
|
|
9897
|
+
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void, startScrollDirection?: DnDDirection) => void;
|
|
9813
9898
|
};
|
|
9814
9899
|
abstract _getEvOffset(ev: MouseEvent): Pixel;
|
|
9815
9900
|
abstract _getViewportOffset(): Pixel;
|
|
@@ -9832,10 +9917,11 @@ declare abstract class AbstractResizer extends Component<ResizerProps, Spreadshe
|
|
|
9832
9917
|
setup(): void;
|
|
9833
9918
|
_computeHandleDisplay(ev: MouseEvent): void;
|
|
9834
9919
|
_computeGrabDisplay(ev: MouseEvent): void;
|
|
9835
|
-
onMouseMove(ev:
|
|
9920
|
+
onMouseMove(ev: PointerEvent): void;
|
|
9836
9921
|
onMouseLeave(): void;
|
|
9837
9922
|
onDblClick(ev: MouseEvent): void;
|
|
9838
9923
|
onMouseDown(ev: MouseEvent): void;
|
|
9924
|
+
onClick(ev: MouseEvent): void;
|
|
9839
9925
|
select(ev: PointerEvent): void;
|
|
9840
9926
|
private startMovement;
|
|
9841
9927
|
private startSelection;
|
|
@@ -9968,13 +10054,13 @@ declare class Border extends Component<Props$C, SpreadsheetChildEnv> {
|
|
|
9968
10054
|
onMouseDown(ev: PointerEvent): void;
|
|
9969
10055
|
}
|
|
9970
10056
|
|
|
9971
|
-
type Orientation = "nw" | "ne" | "sw" | "se";
|
|
10057
|
+
type Orientation = "nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w";
|
|
9972
10058
|
interface Props$B {
|
|
9973
10059
|
zone: Zone;
|
|
9974
10060
|
color: Color;
|
|
9975
10061
|
orientation: Orientation;
|
|
9976
10062
|
isResizing: boolean;
|
|
9977
|
-
onResizeHighlight: (ev: PointerEvent,
|
|
10063
|
+
onResizeHighlight: (ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection) => void;
|
|
9978
10064
|
}
|
|
9979
10065
|
declare class Corner extends Component<Props$B, SpreadsheetChildEnv> {
|
|
9980
10066
|
static template: string;
|
|
@@ -9985,23 +10071,26 @@ declare class Corner extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
9985
10071
|
isResizing: BooleanConstructor;
|
|
9986
10072
|
onResizeHighlight: FunctionConstructor;
|
|
9987
10073
|
};
|
|
9988
|
-
private
|
|
9989
|
-
private
|
|
9990
|
-
|
|
10074
|
+
private dirX;
|
|
10075
|
+
private dirY;
|
|
10076
|
+
setup(): void;
|
|
10077
|
+
get handlerStyle(): string;
|
|
10078
|
+
getHandlerEdgeLength(): 8 | 40;
|
|
10079
|
+
get buttonLook(): string;
|
|
9991
10080
|
onMouseDown(ev: PointerEvent): void;
|
|
9992
10081
|
}
|
|
9993
10082
|
|
|
9994
|
-
interface
|
|
9995
|
-
|
|
10083
|
+
interface HighlightProps {
|
|
10084
|
+
range: Range;
|
|
9996
10085
|
color: Color;
|
|
9997
10086
|
}
|
|
9998
10087
|
interface HighlightState {
|
|
9999
10088
|
shiftingMode: "isMoving" | "isResizing" | "none";
|
|
10000
10089
|
}
|
|
10001
|
-
declare class Highlight extends Component<
|
|
10090
|
+
declare class Highlight extends Component<HighlightProps, SpreadsheetChildEnv> {
|
|
10002
10091
|
static template: string;
|
|
10003
10092
|
static props: {
|
|
10004
|
-
|
|
10093
|
+
range: ObjectConstructor;
|
|
10005
10094
|
color: StringConstructor;
|
|
10006
10095
|
};
|
|
10007
10096
|
static components: {
|
|
@@ -10013,15 +10102,16 @@ declare class Highlight extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
10013
10102
|
start: (initialPointerCoordinates: {
|
|
10014
10103
|
clientX: number;
|
|
10015
10104
|
clientY: number;
|
|
10016
|
-
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void) => void;
|
|
10105
|
+
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void, startScrollDirection?: DnDDirection) => void;
|
|
10017
10106
|
};
|
|
10018
|
-
|
|
10107
|
+
get cornerOrientations(): Array<"nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w">;
|
|
10108
|
+
onResizeHighlight(ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection): void;
|
|
10019
10109
|
onMoveHighlight(ev: PointerEvent): void;
|
|
10020
10110
|
}
|
|
10021
10111
|
|
|
10022
10112
|
type ScrollDirection = "horizontal" | "vertical";
|
|
10023
10113
|
|
|
10024
|
-
interface Props$
|
|
10114
|
+
interface Props$A {
|
|
10025
10115
|
width: Pixel;
|
|
10026
10116
|
height: Pixel;
|
|
10027
10117
|
direction: ScrollDirection;
|
|
@@ -10029,7 +10119,7 @@ interface Props$z {
|
|
|
10029
10119
|
offset: Pixel;
|
|
10030
10120
|
onScroll: (offset: Pixel) => void;
|
|
10031
10121
|
}
|
|
10032
|
-
declare class ScrollBar extends Component<Props$
|
|
10122
|
+
declare class ScrollBar extends Component<Props$A> {
|
|
10033
10123
|
static props: {
|
|
10034
10124
|
width: {
|
|
10035
10125
|
type: NumberConstructor;
|
|
@@ -10057,10 +10147,10 @@ declare class ScrollBar extends Component<Props$z> {
|
|
|
10057
10147
|
onScroll(ev: any): void;
|
|
10058
10148
|
}
|
|
10059
10149
|
|
|
10060
|
-
interface Props$
|
|
10150
|
+
interface Props$z {
|
|
10061
10151
|
leftOffset: number;
|
|
10062
10152
|
}
|
|
10063
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
10153
|
+
declare class HorizontalScrollBar extends Component<Props$z, SpreadsheetChildEnv> {
|
|
10064
10154
|
static props: {
|
|
10065
10155
|
leftOffset: {
|
|
10066
10156
|
type: NumberConstructor;
|
|
@@ -10086,10 +10176,10 @@ declare class HorizontalScrollBar extends Component<Props$y, SpreadsheetChildEnv
|
|
|
10086
10176
|
onScroll(offset: any): void;
|
|
10087
10177
|
}
|
|
10088
10178
|
|
|
10089
|
-
interface Props$
|
|
10179
|
+
interface Props$y {
|
|
10090
10180
|
topOffset: number;
|
|
10091
10181
|
}
|
|
10092
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
10182
|
+
declare class VerticalScrollBar extends Component<Props$y, SpreadsheetChildEnv> {
|
|
10093
10183
|
static props: {
|
|
10094
10184
|
topOffset: {
|
|
10095
10185
|
type: NumberConstructor;
|
|
@@ -10115,23 +10205,32 @@ declare class VerticalScrollBar extends Component<Props$x, SpreadsheetChildEnv>
|
|
|
10115
10205
|
onScroll(offset: any): void;
|
|
10116
10206
|
}
|
|
10117
10207
|
|
|
10118
|
-
|
|
10208
|
+
declare class Selection extends Component<{}, SpreadsheetChildEnv> {
|
|
10209
|
+
static template: string;
|
|
10210
|
+
static props: {};
|
|
10211
|
+
static components: {
|
|
10212
|
+
Highlight: typeof Highlight;
|
|
10213
|
+
};
|
|
10214
|
+
get highlightProps(): HighlightProps;
|
|
10215
|
+
}
|
|
10216
|
+
|
|
10217
|
+
interface Props$x {
|
|
10119
10218
|
table: Table;
|
|
10120
10219
|
}
|
|
10121
|
-
interface State$
|
|
10220
|
+
interface State$3 {
|
|
10122
10221
|
highlightZone: Zone | undefined;
|
|
10123
10222
|
}
|
|
10124
|
-
declare class TableResizer extends Component<Props$
|
|
10223
|
+
declare class TableResizer extends Component<Props$x, SpreadsheetChildEnv> {
|
|
10125
10224
|
static template: string;
|
|
10126
10225
|
static props: {
|
|
10127
10226
|
table: ObjectConstructor;
|
|
10128
10227
|
};
|
|
10129
|
-
state: State$
|
|
10228
|
+
state: State$3;
|
|
10130
10229
|
dragNDropGrid: {
|
|
10131
10230
|
start: (initialPointerCoordinates: {
|
|
10132
10231
|
clientX: number;
|
|
10133
10232
|
clientY: number;
|
|
10134
|
-
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void) => void;
|
|
10233
|
+
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void, startScrollDirection?: DnDDirection) => void;
|
|
10135
10234
|
};
|
|
10136
10235
|
setup(): void;
|
|
10137
10236
|
get containerStyle(): string;
|
|
@@ -10150,20 +10249,22 @@ declare class TableResizer extends Component<Props$w, SpreadsheetChildEnv> {
|
|
|
10150
10249
|
* - a vertical resizer (same, for rows)
|
|
10151
10250
|
*/
|
|
10152
10251
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
10153
|
-
interface Props$
|
|
10252
|
+
interface Props$w {
|
|
10154
10253
|
exposeFocus: (focus: () => void) => void;
|
|
10254
|
+
getGridSize: () => DOMDimension;
|
|
10155
10255
|
}
|
|
10156
|
-
declare class Grid extends Component<Props$
|
|
10256
|
+
declare class Grid extends Component<Props$w, SpreadsheetChildEnv> {
|
|
10157
10257
|
static template: string;
|
|
10158
10258
|
static props: {
|
|
10159
10259
|
exposeFocus: FunctionConstructor;
|
|
10260
|
+
getGridSize: FunctionConstructor;
|
|
10160
10261
|
};
|
|
10161
10262
|
static components: {
|
|
10162
10263
|
GridComposer: typeof GridComposer;
|
|
10163
10264
|
GridOverlay: typeof GridOverlay;
|
|
10164
10265
|
GridPopover: typeof GridPopover;
|
|
10165
10266
|
HeadersOverlay: typeof HeadersOverlay;
|
|
10166
|
-
|
|
10267
|
+
MenuPopover: typeof MenuPopover;
|
|
10167
10268
|
Autofill: typeof Autofill;
|
|
10168
10269
|
ClientTag: typeof ClientTag;
|
|
10169
10270
|
Highlight: typeof Highlight;
|
|
@@ -10171,6 +10272,7 @@ declare class Grid extends Component<Props$v, SpreadsheetChildEnv> {
|
|
|
10171
10272
|
VerticalScrollBar: typeof VerticalScrollBar;
|
|
10172
10273
|
HorizontalScrollBar: typeof HorizontalScrollBar;
|
|
10173
10274
|
TableResizer: typeof TableResizer;
|
|
10275
|
+
Selection: typeof Selection;
|
|
10174
10276
|
};
|
|
10175
10277
|
readonly HEADER_HEIGHT = 26;
|
|
10176
10278
|
readonly HEADER_WIDTH = 48;
|
|
@@ -10186,7 +10288,7 @@ declare class Grid extends Component<Props$v, SpreadsheetChildEnv> {
|
|
|
10186
10288
|
start: (initialPointerCoordinates: {
|
|
10187
10289
|
clientX: number;
|
|
10188
10290
|
clientY: number;
|
|
10189
|
-
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void) => void;
|
|
10291
|
+
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void, startScrollDirection?: DnDDirection) => void;
|
|
10190
10292
|
};
|
|
10191
10293
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
10192
10294
|
hoveredCell: Store<DelayedHoveredCellStore>;
|
|
@@ -10229,6 +10331,7 @@ declare class Grid extends Component<Props$v, SpreadsheetChildEnv> {
|
|
|
10229
10331
|
onComposerCellFocused(content?: string, selection?: ComposerSelection): void;
|
|
10230
10332
|
onComposerContentFocused(): void;
|
|
10231
10333
|
get staticTables(): Table[];
|
|
10334
|
+
get displaySelectionHandler(): boolean;
|
|
10232
10335
|
}
|
|
10233
10336
|
|
|
10234
10337
|
type Direction = "horizontal" | "vertical";
|
|
@@ -10246,13 +10349,13 @@ interface DndPartialArgs {
|
|
|
10246
10349
|
onCancel?: () => void;
|
|
10247
10350
|
onDragEnd?: (itemId: UID, indexAtEnd: Pixel) => void;
|
|
10248
10351
|
}
|
|
10249
|
-
interface State$
|
|
10352
|
+
interface State$2 {
|
|
10250
10353
|
itemsStyle: Record<UID, string>;
|
|
10251
10354
|
draggedItemId: UID | undefined;
|
|
10252
10355
|
start: (direction: Direction, args: DndPartialArgs) => void;
|
|
10253
10356
|
cancel: () => void;
|
|
10254
10357
|
}
|
|
10255
|
-
declare function useDragAndDropListItems(): State$
|
|
10358
|
+
declare function useDragAndDropListItems(): State$2;
|
|
10256
10359
|
|
|
10257
10360
|
declare function useHighlightsOnHover(ref: Ref<HTMLElement>, highlightProvider: HighlightProvider): void;
|
|
10258
10361
|
declare function useHighlights(highlightProvider: HighlightProvider): void;
|
|
@@ -10266,7 +10369,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10266
10369
|
private getChartDefinitionFromContextCreation;
|
|
10267
10370
|
}
|
|
10268
10371
|
|
|
10269
|
-
interface Props$
|
|
10372
|
+
interface Props$v {
|
|
10270
10373
|
figureId: UID;
|
|
10271
10374
|
chartPanelStore: MainChartPanelStore;
|
|
10272
10375
|
}
|
|
@@ -10274,7 +10377,7 @@ interface ChartTypePickerState {
|
|
|
10274
10377
|
popoverProps: PopoverProps | undefined;
|
|
10275
10378
|
popoverStyle: string;
|
|
10276
10379
|
}
|
|
10277
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10380
|
+
declare class ChartTypePicker extends Component<Props$v, SpreadsheetChildEnv> {
|
|
10278
10381
|
static template: string;
|
|
10279
10382
|
static components: {
|
|
10280
10383
|
Section: typeof Section;
|
|
@@ -10310,11 +10413,11 @@ declare class ChartTypePicker extends Component<Props$u, SpreadsheetChildEnv> {
|
|
|
10310
10413
|
private closePopover;
|
|
10311
10414
|
}
|
|
10312
10415
|
|
|
10313
|
-
interface Props$
|
|
10416
|
+
interface Props$u {
|
|
10314
10417
|
onCloseSidePanel: () => void;
|
|
10315
10418
|
figureId: UID;
|
|
10316
10419
|
}
|
|
10317
|
-
declare class ChartPanel extends Component<Props$
|
|
10420
|
+
declare class ChartPanel extends Component<Props$u, SpreadsheetChildEnv> {
|
|
10318
10421
|
static template: string;
|
|
10319
10422
|
static components: {
|
|
10320
10423
|
Section: typeof Section;
|
|
@@ -10334,11 +10437,11 @@ declare class ChartPanel extends Component<Props$t, SpreadsheetChildEnv> {
|
|
|
10334
10437
|
private getChartDefinition;
|
|
10335
10438
|
}
|
|
10336
10439
|
|
|
10337
|
-
interface Props$
|
|
10440
|
+
interface Props$t {
|
|
10338
10441
|
onValueChange: (value: number) => void;
|
|
10339
10442
|
value: number;
|
|
10340
10443
|
}
|
|
10341
|
-
declare class PieHoleSize extends Component<Props$
|
|
10444
|
+
declare class PieHoleSize extends Component<Props$t, SpreadsheetChildEnv> {
|
|
10342
10445
|
static template: string;
|
|
10343
10446
|
static components: {
|
|
10344
10447
|
Section: typeof Section;
|
|
@@ -10351,13 +10454,13 @@ declare class PieHoleSize extends Component<Props$s, SpreadsheetChildEnv> {
|
|
|
10351
10454
|
onChange(value: string): void;
|
|
10352
10455
|
}
|
|
10353
10456
|
|
|
10354
|
-
interface Props$
|
|
10457
|
+
interface Props$s {
|
|
10355
10458
|
figureId: UID;
|
|
10356
10459
|
definition: PieChartDefinition;
|
|
10357
10460
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10358
10461
|
updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10359
10462
|
}
|
|
10360
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10463
|
+
declare class PieChartDesignPanel extends Component<Props$s, SpreadsheetChildEnv> {
|
|
10361
10464
|
static template: string;
|
|
10362
10465
|
static components: {
|
|
10363
10466
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10378,13 +10481,13 @@ declare class PieChartDesignPanel extends Component<Props$r, SpreadsheetChildEnv
|
|
|
10378
10481
|
onPieHoleSizeChange(pieHolePercentage: number): void;
|
|
10379
10482
|
}
|
|
10380
10483
|
|
|
10381
|
-
interface Props$
|
|
10484
|
+
interface Props$r {
|
|
10382
10485
|
items: ActionSpec[];
|
|
10383
10486
|
}
|
|
10384
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10487
|
+
declare class CogWheelMenu extends Component<Props$r, SpreadsheetChildEnv> {
|
|
10385
10488
|
static template: string;
|
|
10386
10489
|
static components: {
|
|
10387
|
-
|
|
10490
|
+
MenuPopover: typeof MenuPopover;
|
|
10388
10491
|
};
|
|
10389
10492
|
static props: {
|
|
10390
10493
|
items: ArrayConstructor;
|
|
@@ -10464,14 +10567,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10464
10567
|
get highlights(): Highlight$1[];
|
|
10465
10568
|
}
|
|
10466
10569
|
|
|
10467
|
-
interface Props$
|
|
10570
|
+
interface Props$q {
|
|
10468
10571
|
deferUpdate: boolean;
|
|
10469
10572
|
isDirty: boolean;
|
|
10470
10573
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10471
10574
|
discard: () => void;
|
|
10472
10575
|
apply: () => void;
|
|
10473
10576
|
}
|
|
10474
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10577
|
+
declare class PivotDeferUpdate extends Component<Props$q, SpreadsheetChildEnv> {
|
|
10475
10578
|
static template: string;
|
|
10476
10579
|
static props: {
|
|
10477
10580
|
deferUpdate: BooleanConstructor;
|
|
@@ -10488,11 +10591,11 @@ declare class PivotDeferUpdate extends Component<Props$p, SpreadsheetChildEnv> {
|
|
|
10488
10591
|
get deferUpdatesTooltip(): string;
|
|
10489
10592
|
}
|
|
10490
10593
|
|
|
10491
|
-
interface Props$
|
|
10594
|
+
interface Props$p {
|
|
10492
10595
|
onFieldPicked: (field: string) => void;
|
|
10493
10596
|
fields: PivotField[];
|
|
10494
10597
|
}
|
|
10495
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10598
|
+
declare class AddDimensionButton extends Component<Props$p, SpreadsheetChildEnv> {
|
|
10496
10599
|
static template: string;
|
|
10497
10600
|
static components: {
|
|
10498
10601
|
Popover: typeof Popover;
|
|
@@ -10528,7 +10631,7 @@ declare class AddDimensionButton extends Component<Props$o, SpreadsheetChildEnv>
|
|
|
10528
10631
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10529
10632
|
}
|
|
10530
10633
|
|
|
10531
|
-
interface Props$
|
|
10634
|
+
interface Props$o {
|
|
10532
10635
|
value: string;
|
|
10533
10636
|
onChange: (value: string) => void;
|
|
10534
10637
|
class?: string;
|
|
@@ -10536,7 +10639,7 @@ interface Props$n {
|
|
|
10536
10639
|
placeholder?: string;
|
|
10537
10640
|
autofocus?: boolean;
|
|
10538
10641
|
}
|
|
10539
|
-
declare class TextInput extends Component<Props$
|
|
10642
|
+
declare class TextInput extends Component<Props$o, SpreadsheetChildEnv> {
|
|
10540
10643
|
static template: string;
|
|
10541
10644
|
static props: {
|
|
10542
10645
|
value: StringConstructor;
|
|
@@ -10566,13 +10669,13 @@ declare class TextInput extends Component<Props$n, SpreadsheetChildEnv> {
|
|
|
10566
10669
|
onMouseUp(ev: MouseEvent): void;
|
|
10567
10670
|
}
|
|
10568
10671
|
|
|
10569
|
-
interface Props$
|
|
10672
|
+
interface Props$n {
|
|
10570
10673
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10571
10674
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10572
10675
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10573
10676
|
type: "row" | "col" | "measure";
|
|
10574
10677
|
}
|
|
10575
|
-
declare class PivotDimension extends Component<Props$
|
|
10678
|
+
declare class PivotDimension extends Component<Props$n, SpreadsheetChildEnv> {
|
|
10576
10679
|
static template: string;
|
|
10577
10680
|
static props: {
|
|
10578
10681
|
dimension: ObjectConstructor;
|
|
@@ -10596,13 +10699,13 @@ declare class PivotDimension extends Component<Props$m, SpreadsheetChildEnv> {
|
|
|
10596
10699
|
updateName(name: string): void;
|
|
10597
10700
|
}
|
|
10598
10701
|
|
|
10599
|
-
interface Props$
|
|
10702
|
+
interface Props$m {
|
|
10600
10703
|
dimension: PivotDimension$1;
|
|
10601
10704
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10602
10705
|
availableGranularities: Set<string>;
|
|
10603
10706
|
allGranularities: string[];
|
|
10604
10707
|
}
|
|
10605
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
10708
|
+
declare class PivotDimensionGranularity extends Component<Props$m, SpreadsheetChildEnv> {
|
|
10606
10709
|
static template: string;
|
|
10607
10710
|
static props: {
|
|
10608
10711
|
dimension: ObjectConstructor;
|
|
@@ -10627,11 +10730,11 @@ declare class PivotDimensionGranularity extends Component<Props$l, SpreadsheetCh
|
|
|
10627
10730
|
};
|
|
10628
10731
|
}
|
|
10629
10732
|
|
|
10630
|
-
interface Props$
|
|
10733
|
+
interface Props$l {
|
|
10631
10734
|
dimension: PivotDimension$1;
|
|
10632
10735
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10633
10736
|
}
|
|
10634
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
10737
|
+
declare class PivotDimensionOrder extends Component<Props$l, SpreadsheetChildEnv> {
|
|
10635
10738
|
static template: string;
|
|
10636
10739
|
static props: {
|
|
10637
10740
|
dimension: ObjectConstructor;
|
|
@@ -10667,7 +10770,7 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
|
|
|
10667
10770
|
declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: any): CellValue;
|
|
10668
10771
|
declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
|
|
10669
10772
|
|
|
10670
|
-
interface Props$
|
|
10773
|
+
interface Props$k {
|
|
10671
10774
|
pivotId: string;
|
|
10672
10775
|
definition: PivotRuntimeDefinition;
|
|
10673
10776
|
measure: PivotMeasure;
|
|
@@ -10675,7 +10778,7 @@ interface Props$j {
|
|
|
10675
10778
|
onRemoved: () => void;
|
|
10676
10779
|
generateMeasureId: (fieldName: string, aggregator?: string) => string;
|
|
10677
10780
|
}
|
|
10678
|
-
declare class PivotMeasureEditor extends Component<Props$
|
|
10781
|
+
declare class PivotMeasureEditor extends Component<Props$k> {
|
|
10679
10782
|
static template: string;
|
|
10680
10783
|
static components: {
|
|
10681
10784
|
PivotDimension: typeof PivotDimension;
|
|
@@ -10700,11 +10803,11 @@ declare class PivotMeasureEditor extends Component<Props$j> {
|
|
|
10700
10803
|
get isCalculatedMeasureInvalid(): boolean;
|
|
10701
10804
|
}
|
|
10702
10805
|
|
|
10703
|
-
interface Props$
|
|
10806
|
+
interface Props$j {
|
|
10704
10807
|
definition: PivotRuntimeDefinition;
|
|
10705
10808
|
pivotId: UID;
|
|
10706
10809
|
}
|
|
10707
|
-
declare class PivotSortSection extends Component<Props$
|
|
10810
|
+
declare class PivotSortSection extends Component<Props$j, SpreadsheetChildEnv> {
|
|
10708
10811
|
static template: string;
|
|
10709
10812
|
static components: {
|
|
10710
10813
|
Section: typeof Section;
|
|
@@ -10721,7 +10824,7 @@ declare class PivotSortSection extends Component<Props$i, SpreadsheetChildEnv> {
|
|
|
10721
10824
|
}[];
|
|
10722
10825
|
}
|
|
10723
10826
|
|
|
10724
|
-
interface Props$
|
|
10827
|
+
interface Props$i {
|
|
10725
10828
|
definition: PivotRuntimeDefinition;
|
|
10726
10829
|
onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
10727
10830
|
unusedGroupableFields: PivotField[];
|
|
@@ -10732,7 +10835,7 @@ interface Props$h {
|
|
|
10732
10835
|
getScrollableContainerEl?: () => HTMLElement;
|
|
10733
10836
|
pivotId: UID;
|
|
10734
10837
|
}
|
|
10735
|
-
declare class PivotLayoutConfigurator extends Component<Props$
|
|
10838
|
+
declare class PivotLayoutConfigurator extends Component<Props$i, SpreadsheetChildEnv> {
|
|
10736
10839
|
static template: string;
|
|
10737
10840
|
static components: {
|
|
10738
10841
|
AddDimensionButton: typeof AddDimensionButton;
|
|
@@ -10823,11 +10926,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
10823
10926
|
private areDomainFieldsValid;
|
|
10824
10927
|
}
|
|
10825
10928
|
|
|
10826
|
-
interface Props$
|
|
10929
|
+
interface Props$h {
|
|
10827
10930
|
pivotId: UID;
|
|
10828
10931
|
flipAxis: () => void;
|
|
10829
10932
|
}
|
|
10830
|
-
declare class PivotTitleSection extends Component<Props$
|
|
10933
|
+
declare class PivotTitleSection extends Component<Props$h, SpreadsheetChildEnv> {
|
|
10831
10934
|
static template: string;
|
|
10832
10935
|
static components: {
|
|
10833
10936
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -10959,7 +11062,7 @@ interface PivotDialogValue {
|
|
|
10959
11062
|
value: string;
|
|
10960
11063
|
isMissing: boolean;
|
|
10961
11064
|
}
|
|
10962
|
-
interface Props$
|
|
11065
|
+
interface Props$g {
|
|
10963
11066
|
pivotId: UID;
|
|
10964
11067
|
onCellClicked: (formula: string) => void;
|
|
10965
11068
|
}
|
|
@@ -10968,7 +11071,7 @@ interface TableData {
|
|
|
10968
11071
|
rows: PivotDialogRow[];
|
|
10969
11072
|
values: PivotDialogValue[][];
|
|
10970
11073
|
}
|
|
10971
|
-
declare class PivotHTMLRenderer extends Component<Props$
|
|
11074
|
+
declare class PivotHTMLRenderer extends Component<Props$g, SpreadsheetChildEnv> {
|
|
10972
11075
|
static template: string;
|
|
10973
11076
|
static components: {
|
|
10974
11077
|
Checkbox: typeof Checkbox;
|
|
@@ -11025,13 +11128,13 @@ declare class PivotHTMLRenderer extends Component<Props$f, SpreadsheetChildEnv>
|
|
|
11025
11128
|
_buildValues(id: UID, table: SpreadsheetPivotTable): PivotDialogValue[][];
|
|
11026
11129
|
}
|
|
11027
11130
|
|
|
11028
|
-
interface Props$
|
|
11131
|
+
interface Props$f {
|
|
11029
11132
|
figureId: UID;
|
|
11030
11133
|
definition: ChartWithDataSetDefinition;
|
|
11031
11134
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
11032
11135
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
11033
11136
|
}
|
|
11034
|
-
declare class ChartShowDataMarkers extends Component<Props$
|
|
11137
|
+
declare class ChartShowDataMarkers extends Component<Props$f, SpreadsheetChildEnv> {
|
|
11035
11138
|
static template: string;
|
|
11036
11139
|
static components: {
|
|
11037
11140
|
Checkbox: typeof Checkbox;
|
|
@@ -11044,13 +11147,13 @@ declare class ChartShowDataMarkers extends Component<Props$e, SpreadsheetChildEn
|
|
|
11044
11147
|
};
|
|
11045
11148
|
}
|
|
11046
11149
|
|
|
11047
|
-
interface Props$
|
|
11150
|
+
interface Props$e {
|
|
11048
11151
|
figureId: UID;
|
|
11049
11152
|
definition: ComboChartDefinition;
|
|
11050
11153
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11051
11154
|
updateChart: (figureId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11052
11155
|
}
|
|
11053
|
-
declare class ComboChartDesignPanel extends ChartWithAxisDesignPanel<Props$
|
|
11156
|
+
declare class ComboChartDesignPanel extends ChartWithAxisDesignPanel<Props$e> {
|
|
11054
11157
|
static template: string;
|
|
11055
11158
|
static components: {
|
|
11056
11159
|
ChartShowDataMarkers: typeof ChartShowDataMarkers;
|
|
@@ -11071,13 +11174,13 @@ declare class ComboChartDesignPanel extends ChartWithAxisDesignPanel<Props$d> {
|
|
|
11071
11174
|
getDataSeriesType(index: number): "line" | "bar";
|
|
11072
11175
|
}
|
|
11073
11176
|
|
|
11074
|
-
interface Props$
|
|
11177
|
+
interface Props$d {
|
|
11075
11178
|
figureId: UID;
|
|
11076
11179
|
definition: FunnelChartDefinition;
|
|
11077
11180
|
canUpdateChart: (figureID: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
|
|
11078
11181
|
updateChart: (figureId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
|
|
11079
11182
|
}
|
|
11080
|
-
declare class FunnelChartDesignPanel extends Component<Props$
|
|
11183
|
+
declare class FunnelChartDesignPanel extends Component<Props$d, SpreadsheetChildEnv> {
|
|
11081
11184
|
static template: string;
|
|
11082
11185
|
static components: {
|
|
11083
11186
|
ChartShowValues: typeof ChartShowValues;
|
|
@@ -11099,13 +11202,13 @@ declare class FunnelChartDesignPanel extends Component<Props$c, SpreadsheetChild
|
|
|
11099
11202
|
updateFunnelItemColor(index: number, color: string): void;
|
|
11100
11203
|
}
|
|
11101
11204
|
|
|
11102
|
-
interface Props$
|
|
11205
|
+
interface Props$c {
|
|
11103
11206
|
figureId: UID;
|
|
11104
11207
|
definition: GeoChartDefinition;
|
|
11105
11208
|
canUpdateChart: (figureID: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
|
|
11106
11209
|
updateChart: (figureId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
|
|
11107
11210
|
}
|
|
11108
|
-
declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$
|
|
11211
|
+
declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$c> {
|
|
11109
11212
|
static template: string;
|
|
11110
11213
|
static components: {
|
|
11111
11214
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -11129,12 +11232,12 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$b> {
|
|
|
11129
11232
|
setCustomColorScaleColor(colorType: "minColor" | "midColor" | "maxColor", color: Color): void;
|
|
11130
11233
|
}
|
|
11131
11234
|
|
|
11132
|
-
interface Props$
|
|
11235
|
+
interface Props$b {
|
|
11133
11236
|
figureId: UID;
|
|
11134
11237
|
definition: GeoChartDefinition;
|
|
11135
11238
|
updateChart: (figureId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
|
|
11136
11239
|
}
|
|
11137
|
-
declare class GeoChartRegionSelectSection extends Component<Props$
|
|
11240
|
+
declare class GeoChartRegionSelectSection extends Component<Props$b, SpreadsheetChildEnv> {
|
|
11138
11241
|
static template: string;
|
|
11139
11242
|
static components: {
|
|
11140
11243
|
Section: typeof Section;
|
|
@@ -11149,13 +11252,13 @@ declare class GeoChartRegionSelectSection extends Component<Props$a, Spreadsheet
|
|
|
11149
11252
|
get selectedRegion(): string;
|
|
11150
11253
|
}
|
|
11151
11254
|
|
|
11152
|
-
interface Props$
|
|
11255
|
+
interface Props$a {
|
|
11153
11256
|
figureId: UID;
|
|
11154
11257
|
definition: ComboChartDefinition;
|
|
11155
11258
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11156
11259
|
updateChart: (figureId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11157
11260
|
}
|
|
11158
|
-
declare class LineChartDesignPanel extends ChartWithAxisDesignPanel<Props$
|
|
11261
|
+
declare class LineChartDesignPanel extends ChartWithAxisDesignPanel<Props$a> {
|
|
11159
11262
|
static template: string;
|
|
11160
11263
|
static components: {
|
|
11161
11264
|
ChartShowDataMarkers: typeof ChartShowDataMarkers;
|
|
@@ -11169,13 +11272,13 @@ declare class LineChartDesignPanel extends ChartWithAxisDesignPanel<Props$9> {
|
|
|
11169
11272
|
};
|
|
11170
11273
|
}
|
|
11171
11274
|
|
|
11172
|
-
interface Props$
|
|
11275
|
+
interface Props$9 {
|
|
11173
11276
|
figureId: UID;
|
|
11174
11277
|
definition: RadarChartDefinition;
|
|
11175
11278
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
|
|
11176
11279
|
updateChart: (figureId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
|
|
11177
11280
|
}
|
|
11178
|
-
declare class RadarChartDesignPanel extends Component<Props$
|
|
11281
|
+
declare class RadarChartDesignPanel extends Component<Props$9, SpreadsheetChildEnv> {
|
|
11179
11282
|
static template: string;
|
|
11180
11283
|
static components: {
|
|
11181
11284
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -11193,13 +11296,13 @@ declare class RadarChartDesignPanel extends Component<Props$8, SpreadsheetChildE
|
|
|
11193
11296
|
};
|
|
11194
11297
|
}
|
|
11195
11298
|
|
|
11196
|
-
interface Props$
|
|
11299
|
+
interface Props$8 {
|
|
11197
11300
|
figureId: UID;
|
|
11198
11301
|
definition: WaterfallChartDefinition;
|
|
11199
11302
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
|
|
11200
11303
|
updateChart: (figureId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
|
|
11201
11304
|
}
|
|
11202
|
-
declare class WaterfallChartDesignPanel extends Component<Props$
|
|
11305
|
+
declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetChildEnv> {
|
|
11203
11306
|
static template: string;
|
|
11204
11307
|
static components: {
|
|
11205
11308
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -11612,13 +11715,13 @@ declare class Ripple extends Component<RippleProps, SpreadsheetChildEnv> {
|
|
|
11612
11715
|
getRippleEffectProps(id: number): RippleEffectProps;
|
|
11613
11716
|
}
|
|
11614
11717
|
|
|
11615
|
-
interface Props$
|
|
11718
|
+
interface Props$7 {
|
|
11616
11719
|
sheetId: string;
|
|
11617
11720
|
openContextMenu: (registry: MenuItemRegistry, ev: MouseEvent) => void;
|
|
11618
11721
|
style?: string;
|
|
11619
|
-
onMouseDown: (ev:
|
|
11722
|
+
onMouseDown: (ev: PointerEvent) => void;
|
|
11620
11723
|
}
|
|
11621
|
-
declare class BottomBarSheet extends Component<Props$
|
|
11724
|
+
declare class BottomBarSheet extends Component<Props$7, SpreadsheetChildEnv> {
|
|
11622
11725
|
static template: string;
|
|
11623
11726
|
static props: {
|
|
11624
11727
|
sheetId: StringConstructor;
|
|
@@ -11649,7 +11752,8 @@ declare class BottomBarSheet extends Component<Props$6, SpreadsheetChildEnv> {
|
|
|
11649
11752
|
private focusInputAndSelectContent;
|
|
11650
11753
|
private scrollToSheet;
|
|
11651
11754
|
onFocusOut(): void;
|
|
11652
|
-
|
|
11755
|
+
onClick(): void;
|
|
11756
|
+
onMouseDown(ev: PointerEvent): void;
|
|
11653
11757
|
private activateSheet;
|
|
11654
11758
|
onDblClick(): void;
|
|
11655
11759
|
onKeyDown(ev: KeyboardEvent): void;
|
|
@@ -11669,11 +11773,11 @@ declare class BottomBarSheet extends Component<Props$6, SpreadsheetChildEnv> {
|
|
|
11669
11773
|
get sheetColorStyle(): string;
|
|
11670
11774
|
}
|
|
11671
11775
|
|
|
11672
|
-
interface Props$
|
|
11776
|
+
interface Props$6 {
|
|
11673
11777
|
openContextMenu: (x: number, y: number, registry: MenuItemRegistry) => void;
|
|
11674
11778
|
closeContextMenu: () => void;
|
|
11675
11779
|
}
|
|
11676
|
-
declare class BottomBarStatistic extends Component<Props$
|
|
11780
|
+
declare class BottomBarStatistic extends Component<Props$6, SpreadsheetChildEnv> {
|
|
11677
11781
|
static template: string;
|
|
11678
11782
|
static props: {
|
|
11679
11783
|
openContextMenu: FunctionConstructor;
|
|
@@ -11694,19 +11798,19 @@ interface BottomBarSheetItem {
|
|
|
11694
11798
|
id: UID;
|
|
11695
11799
|
name: string;
|
|
11696
11800
|
}
|
|
11697
|
-
interface Props$
|
|
11801
|
+
interface Props$5 {
|
|
11698
11802
|
onClick: () => void;
|
|
11699
11803
|
}
|
|
11700
11804
|
interface BottomBarMenuState extends MenuState {
|
|
11701
11805
|
menuId: UID | undefined;
|
|
11702
11806
|
}
|
|
11703
|
-
declare class BottomBar extends Component<Props$
|
|
11807
|
+
declare class BottomBar extends Component<Props$5, SpreadsheetChildEnv> {
|
|
11704
11808
|
static template: string;
|
|
11705
11809
|
static props: {
|
|
11706
11810
|
onClick: FunctionConstructor;
|
|
11707
11811
|
};
|
|
11708
11812
|
static components: {
|
|
11709
|
-
|
|
11813
|
+
MenuPopover: typeof MenuPopover;
|
|
11710
11814
|
Ripple: typeof Ripple;
|
|
11711
11815
|
BottomBarSheet: typeof BottomBarSheet;
|
|
11712
11816
|
BottomBarStatistic: typeof BottomBarStatistic;
|
|
@@ -11757,11 +11861,13 @@ declare class ClickableCellsStore extends SpreadsheetStore {
|
|
|
11757
11861
|
get clickableCells(): ClickableCell[];
|
|
11758
11862
|
}
|
|
11759
11863
|
|
|
11760
|
-
interface Props$
|
|
11864
|
+
interface Props$4 {
|
|
11761
11865
|
}
|
|
11762
|
-
declare class SpreadsheetDashboard extends Component<Props$
|
|
11866
|
+
declare class SpreadsheetDashboard extends Component<Props$4, SpreadsheetChildEnv> {
|
|
11763
11867
|
static template: string;
|
|
11764
|
-
static props: {
|
|
11868
|
+
static props: {
|
|
11869
|
+
getGridSize: FunctionConstructor;
|
|
11870
|
+
};
|
|
11765
11871
|
static components: {
|
|
11766
11872
|
GridOverlay: typeof GridOverlay;
|
|
11767
11873
|
GridPopover: typeof GridPopover;
|
|
@@ -11793,7 +11899,7 @@ declare class SpreadsheetDashboard extends Component<Props$3, SpreadsheetChildEn
|
|
|
11793
11899
|
private getGridRect;
|
|
11794
11900
|
}
|
|
11795
11901
|
|
|
11796
|
-
interface Props$
|
|
11902
|
+
interface Props$3 {
|
|
11797
11903
|
group: HeaderGroup;
|
|
11798
11904
|
layerOffset: number;
|
|
11799
11905
|
openContextMenu(position: DOMCoordinates, menuItems: Action[]): void;
|
|
@@ -11803,7 +11909,7 @@ interface GroupBox {
|
|
|
11803
11909
|
headerRect: Rect;
|
|
11804
11910
|
isEndHidden: boolean;
|
|
11805
11911
|
}
|
|
11806
|
-
declare abstract class AbstractHeaderGroup extends Component<Props$
|
|
11912
|
+
declare abstract class AbstractHeaderGroup extends Component<Props$3, SpreadsheetChildEnv> {
|
|
11807
11913
|
static template: string;
|
|
11808
11914
|
static props: {
|
|
11809
11915
|
group: ObjectConstructor;
|
|
@@ -11835,11 +11941,11 @@ declare class ColGroup extends AbstractHeaderGroup {
|
|
|
11835
11941
|
get groupBox(): GroupBox;
|
|
11836
11942
|
}
|
|
11837
11943
|
|
|
11838
|
-
interface Props$
|
|
11944
|
+
interface Props$2 {
|
|
11839
11945
|
dimension: Dimension;
|
|
11840
11946
|
layers: HeaderGroup[][];
|
|
11841
11947
|
}
|
|
11842
|
-
declare class HeaderGroupContainer extends Component<Props$
|
|
11948
|
+
declare class HeaderGroupContainer extends Component<Props$2, SpreadsheetChildEnv> {
|
|
11843
11949
|
static template: string;
|
|
11844
11950
|
static props: {
|
|
11845
11951
|
dimension: StringConstructor;
|
|
@@ -11848,7 +11954,7 @@ declare class HeaderGroupContainer extends Component<Props$1, SpreadsheetChildEn
|
|
|
11848
11954
|
static components: {
|
|
11849
11955
|
RowGroup: typeof RowGroup;
|
|
11850
11956
|
ColGroup: typeof ColGroup;
|
|
11851
|
-
|
|
11957
|
+
MenuPopover: typeof MenuPopover;
|
|
11852
11958
|
};
|
|
11853
11959
|
menu: MenuState;
|
|
11854
11960
|
getLayerOffset(layerIndex: number): number;
|
|
@@ -11874,10 +11980,68 @@ declare class SidePanel extends Component<{}, SpreadsheetChildEnv> {
|
|
|
11874
11980
|
startHandleDrag(ev: MouseEvent): void;
|
|
11875
11981
|
}
|
|
11876
11982
|
|
|
11983
|
+
interface State$1 {
|
|
11984
|
+
menuItems: Action[];
|
|
11985
|
+
title: string | undefined;
|
|
11986
|
+
parentState: State$1 | undefined;
|
|
11987
|
+
}
|
|
11988
|
+
interface RibbonMenuProps {
|
|
11989
|
+
onClose: () => void;
|
|
11990
|
+
height: number;
|
|
11991
|
+
}
|
|
11992
|
+
declare class RibbonMenu extends Component<RibbonMenuProps, SpreadsheetChildEnv> {
|
|
11993
|
+
static template: string;
|
|
11994
|
+
static props: {
|
|
11995
|
+
onClose: FunctionConstructor;
|
|
11996
|
+
};
|
|
11997
|
+
static components: {
|
|
11998
|
+
Menu: typeof Menu;
|
|
11999
|
+
};
|
|
12000
|
+
rootItems: Action[];
|
|
12001
|
+
private menuRef;
|
|
12002
|
+
state: State$1;
|
|
12003
|
+
setup(): void;
|
|
12004
|
+
onExternalClick(ev: Event): void;
|
|
12005
|
+
onClickMenu(menu: Action): void;
|
|
12006
|
+
get menuProps(): MenuProps;
|
|
12007
|
+
get style(): string;
|
|
12008
|
+
onClickBack(): void;
|
|
12009
|
+
get backTitle(): string;
|
|
12010
|
+
}
|
|
12011
|
+
|
|
12012
|
+
interface Props$1 {
|
|
12013
|
+
onClick: () => void;
|
|
12014
|
+
}
|
|
12015
|
+
declare class SmallBottomBar extends Component<Props$1, SpreadsheetChildEnv> {
|
|
12016
|
+
static components: {
|
|
12017
|
+
Composer: typeof Composer;
|
|
12018
|
+
BottomBar: typeof BottomBar;
|
|
12019
|
+
Ripple: typeof Ripple;
|
|
12020
|
+
RibbonMenu: typeof RibbonMenu;
|
|
12021
|
+
};
|
|
12022
|
+
static template: string;
|
|
12023
|
+
static props: {
|
|
12024
|
+
onClick: FunctionConstructor;
|
|
12025
|
+
};
|
|
12026
|
+
private composerFocusStore;
|
|
12027
|
+
private composerStore;
|
|
12028
|
+
private composerInterface;
|
|
12029
|
+
private composerRef;
|
|
12030
|
+
private menuState;
|
|
12031
|
+
setup(): void;
|
|
12032
|
+
get focus(): ComposerFocusType;
|
|
12033
|
+
get rect(): Rect;
|
|
12034
|
+
get composerProps(): CellComposerProps;
|
|
12035
|
+
get symbols(): string[];
|
|
12036
|
+
insertSymbol(symbol: string): void;
|
|
12037
|
+
toggleRibbon(): void;
|
|
12038
|
+
}
|
|
12039
|
+
|
|
11877
12040
|
type ToolBarItem<C extends ComponentConstructor = ComponentConstructor> = {
|
|
11878
12041
|
component: C;
|
|
11879
12042
|
props: PropsOf<C>;
|
|
11880
12043
|
sequence: number;
|
|
12044
|
+
isVisible?: (env: SpreadsheetChildEnv) => boolean;
|
|
11881
12045
|
};
|
|
11882
12046
|
declare class ToolBarRegistry {
|
|
11883
12047
|
content: {
|
|
@@ -11955,7 +12119,7 @@ declare class TopBar extends Component<Props, SpreadsheetChildEnv> {
|
|
|
11955
12119
|
dropdownMaxHeight: NumberConstructor;
|
|
11956
12120
|
};
|
|
11957
12121
|
static components: {
|
|
11958
|
-
|
|
12122
|
+
MenuPopover: typeof MenuPopover;
|
|
11959
12123
|
TopBarComposer: typeof TopBarComposer;
|
|
11960
12124
|
Popover: typeof Popover;
|
|
11961
12125
|
};
|
|
@@ -12026,6 +12190,7 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
12026
12190
|
TopBar: typeof TopBar;
|
|
12027
12191
|
Grid: typeof Grid;
|
|
12028
12192
|
BottomBar: typeof BottomBar;
|
|
12193
|
+
SmallBottomBar: typeof SmallBottomBar;
|
|
12029
12194
|
SidePanel: typeof SidePanel;
|
|
12030
12195
|
SpreadsheetDashboard: typeof SpreadsheetDashboard;
|
|
12031
12196
|
HeaderGroupContainer: typeof HeaderGroupContainer;
|
|
@@ -12051,6 +12216,10 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
12051
12216
|
get gridContainerStyle(): string;
|
|
12052
12217
|
get rowLayers(): HeaderGroup[][];
|
|
12053
12218
|
get colLayers(): HeaderGroup[][];
|
|
12219
|
+
getGridSize(): {
|
|
12220
|
+
width: number;
|
|
12221
|
+
height: number;
|
|
12222
|
+
};
|
|
12054
12223
|
}
|
|
12055
12224
|
|
|
12056
12225
|
type SprintfValues = (string | String | number)[] | [{
|
|
@@ -12078,7 +12247,7 @@ declare const SPREADSHEET_DIMENSIONS: {
|
|
|
12078
12247
|
MIN_COL_WIDTH: number;
|
|
12079
12248
|
HEADER_HEIGHT: number;
|
|
12080
12249
|
HEADER_WIDTH: number;
|
|
12081
|
-
|
|
12250
|
+
DESKTOP_BOTTOMBAR_HEIGHT: number;
|
|
12082
12251
|
DEFAULT_CELL_WIDTH: number;
|
|
12083
12252
|
DEFAULT_CELL_HEIGHT: number;
|
|
12084
12253
|
SCROLLBAR_WIDTH: number;
|
|
@@ -12246,7 +12415,7 @@ declare const components: {
|
|
|
12246
12415
|
FunnelChartDesignPanel: typeof FunnelChartDesignPanel;
|
|
12247
12416
|
ChartTypePicker: typeof ChartTypePicker;
|
|
12248
12417
|
FigureComponent: typeof FigureComponent;
|
|
12249
|
-
|
|
12418
|
+
MenuPopover: typeof MenuPopover;
|
|
12250
12419
|
Popover: typeof Popover;
|
|
12251
12420
|
SelectionInput: typeof SelectionInput;
|
|
12252
12421
|
ValidationMessages: typeof ValidationMessages;
|
|
@@ -12781,6 +12950,8 @@ declare const chartHelpers: {
|
|
|
12781
12950
|
}>;
|
|
12782
12951
|
getChartShowValues(definition: ChartWithDataSetDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
|
|
12783
12952
|
getSunburstShowValues(definition: SunburstChartDefinition, args: ChartRuntimeGenerationArgs): ChartSunburstLabelsPluginOptions;
|
|
12953
|
+
getPyramidChartShowValues(definition: ChartWithDataSetDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
|
|
12954
|
+
getWaterfallChartShowValues(definition: WaterfallChartDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
|
|
12784
12955
|
getChartTitle(definition: ChartWithDataSetDefinition): chart_js_dist_types_utils._DeepPartialObject<chart_js.TitleOptions>;
|
|
12785
12956
|
getBarChartTooltip(definition: GenericDefinition<BarChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
|
|
12786
12957
|
getLineChartTooltip(definition: GenericDefinition<LineChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
|
|
@@ -12868,4 +13039,4 @@ declare const chartHelpers: {
|
|
|
12868
13039
|
WaterfallChart: typeof WaterfallChart;
|
|
12869
13040
|
};
|
|
12870
13041
|
|
|
12871
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
13042
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|