@odoo/o-spreadsheet 18.4.0-alpha.9 → 18.4.1
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 +1117 -229
- package/dist/o-spreadsheet.d.ts +153 -51
- package/dist/o-spreadsheet.esm.js +1117 -229
- package/dist/o-spreadsheet.iife.js +1117 -229
- package/dist/o-spreadsheet.iife.min.js +412 -400
- package/dist/o_spreadsheet.xml +76 -22
- package/package.json +2 -2
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ interface ExcelFigureSize {
|
|
|
33
33
|
type ResizeDirection = -1 | 0 | 1;
|
|
34
34
|
|
|
35
35
|
type ImageSVG = {
|
|
36
|
+
name: string;
|
|
36
37
|
width: number;
|
|
37
38
|
height: number;
|
|
38
39
|
paths: {
|
|
@@ -1244,6 +1245,7 @@ interface SheetData {
|
|
|
1244
1245
|
}
|
|
1245
1246
|
interface WorkbookSettings {
|
|
1246
1247
|
locale: Locale;
|
|
1248
|
+
disableCellAnimations?: boolean;
|
|
1247
1249
|
}
|
|
1248
1250
|
type PivotData = {
|
|
1249
1251
|
formulaId: string;
|
|
@@ -2154,13 +2156,6 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
|
|
|
2154
2156
|
drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
|
|
2155
2157
|
}
|
|
2156
2158
|
|
|
2157
|
-
type MinimalClipboardData = {
|
|
2158
|
-
sheetId?: UID;
|
|
2159
|
-
cells?: ClipboardCell[][];
|
|
2160
|
-
zones?: Zone[];
|
|
2161
|
-
figureId?: UID;
|
|
2162
|
-
[key: string]: unknown;
|
|
2163
|
-
};
|
|
2164
2159
|
interface SpreadsheetClipboardData extends MinimalClipboardData {
|
|
2165
2160
|
version?: string;
|
|
2166
2161
|
clipboardId?: string;
|
|
@@ -2639,6 +2634,13 @@ type ClipboardPasteTarget = {
|
|
|
2639
2634
|
zones: Zone[];
|
|
2640
2635
|
figureId?: UID;
|
|
2641
2636
|
};
|
|
2637
|
+
type MinimalClipboardData = {
|
|
2638
|
+
sheetId?: UID;
|
|
2639
|
+
cells?: ClipboardCell[][];
|
|
2640
|
+
zones?: Zone[];
|
|
2641
|
+
figureId?: UID;
|
|
2642
|
+
[key: string]: unknown;
|
|
2643
|
+
};
|
|
2642
2644
|
|
|
2643
2645
|
/**
|
|
2644
2646
|
* There are two kinds of commands: CoreCommands and LocalCommands
|
|
@@ -5127,7 +5129,6 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
5127
5129
|
private replaceMeasureFormula;
|
|
5128
5130
|
private checkSortedColumnInMeasures;
|
|
5129
5131
|
private checkDuplicatedMeasureIds;
|
|
5130
|
-
private repairSortedColumn;
|
|
5131
5132
|
/**
|
|
5132
5133
|
* Import the pivots
|
|
5133
5134
|
*/
|
|
@@ -5642,7 +5643,7 @@ declare class CellIconPlugin extends CoreViewPlugin {
|
|
|
5642
5643
|
private cellIconsCache;
|
|
5643
5644
|
handle(cmd: Command): void;
|
|
5644
5645
|
getCellIcons(position: CellPosition): GridIcon[];
|
|
5645
|
-
getCellIconRect(icon: GridIcon): Rect;
|
|
5646
|
+
getCellIconRect(icon: GridIcon, cellRect: Rect): Rect;
|
|
5646
5647
|
private getIconHorizontalPosition;
|
|
5647
5648
|
private computeCellIcons;
|
|
5648
5649
|
doesCellHaveGridIcon(position: CellPosition): boolean;
|
|
@@ -6559,7 +6560,21 @@ interface BoxTextContent {
|
|
|
6559
6560
|
x: Pixel;
|
|
6560
6561
|
y: Pixel;
|
|
6561
6562
|
}
|
|
6562
|
-
|
|
6563
|
+
type BorderDescrWithOpacity = BorderDescr & {
|
|
6564
|
+
opacity?: number;
|
|
6565
|
+
};
|
|
6566
|
+
type RenderingBorder = {
|
|
6567
|
+
top?: BorderDescrWithOpacity;
|
|
6568
|
+
right?: BorderDescrWithOpacity;
|
|
6569
|
+
bottom?: BorderDescrWithOpacity;
|
|
6570
|
+
left?: BorderDescrWithOpacity;
|
|
6571
|
+
};
|
|
6572
|
+
type RenderingGridIcon = GridIcon & {
|
|
6573
|
+
clipRect?: Rect;
|
|
6574
|
+
opacity?: number;
|
|
6575
|
+
};
|
|
6576
|
+
interface RenderingBox {
|
|
6577
|
+
id: string;
|
|
6563
6578
|
content?: BoxTextContent;
|
|
6564
6579
|
style: Style;
|
|
6565
6580
|
chip?: {
|
|
@@ -6570,19 +6585,22 @@ interface Box extends Rect {
|
|
|
6570
6585
|
color: Color;
|
|
6571
6586
|
};
|
|
6572
6587
|
dataBarFill?: DataBarFill;
|
|
6573
|
-
border?:
|
|
6588
|
+
border?: RenderingBorder;
|
|
6574
6589
|
clipRect?: Rect;
|
|
6575
6590
|
isError?: boolean;
|
|
6576
6591
|
isMerge?: boolean;
|
|
6577
|
-
verticalAlign?: VerticalAlign;
|
|
6578
6592
|
isOverflow?: boolean;
|
|
6579
|
-
overlayColor
|
|
6593
|
+
overlayColor?: Color;
|
|
6580
6594
|
icons: {
|
|
6581
|
-
left?:
|
|
6582
|
-
right?:
|
|
6583
|
-
center?:
|
|
6595
|
+
left?: RenderingGridIcon;
|
|
6596
|
+
right?: RenderingGridIcon;
|
|
6597
|
+
center?: RenderingGridIcon;
|
|
6584
6598
|
};
|
|
6599
|
+
textOpacity?: number;
|
|
6600
|
+
skipCellGridLines?: boolean;
|
|
6601
|
+
disabledAnimation?: boolean;
|
|
6585
6602
|
}
|
|
6603
|
+
type Box = RenderingBox & Rect;
|
|
6586
6604
|
interface Image {
|
|
6587
6605
|
clipIcon: Rect | null;
|
|
6588
6606
|
size: Pixel;
|
|
@@ -6932,7 +6950,7 @@ declare class OTRegistry extends Registry<Map<CoreCommandTypes, TransformationFu
|
|
|
6932
6950
|
interface CellClickableItem {
|
|
6933
6951
|
condition: (position: CellPosition, getters: Getters) => boolean;
|
|
6934
6952
|
execute: (position: CellPosition, env: SpreadsheetChildEnv, isMiddleClick?: boolean) => void;
|
|
6935
|
-
title?: string;
|
|
6953
|
+
title?: string | ((position: CellPosition, getters: Getters) => string);
|
|
6936
6954
|
sequence: number;
|
|
6937
6955
|
}
|
|
6938
6956
|
|
|
@@ -7046,15 +7064,43 @@ declare class Section extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
|
7046
7064
|
};
|
|
7047
7065
|
}
|
|
7048
7066
|
|
|
7067
|
+
interface Renderer {
|
|
7068
|
+
drawLayer(ctx: GridRenderingContext, layer: LayerName, timestamp: number | undefined): void;
|
|
7069
|
+
renderingLayers: Readonly<LayerName[]>;
|
|
7070
|
+
}
|
|
7071
|
+
declare class RendererStore {
|
|
7072
|
+
mutators: readonly ["register", "unRegister", "draw", "startAnimation", "stopAnimation"];
|
|
7073
|
+
private renderers;
|
|
7074
|
+
private model;
|
|
7075
|
+
private context;
|
|
7076
|
+
private animationFrameId;
|
|
7077
|
+
private registeredAnimations;
|
|
7078
|
+
constructor(get: Get);
|
|
7079
|
+
register(renderer: Renderer): void;
|
|
7080
|
+
unRegister(renderer: Renderer): void;
|
|
7081
|
+
private drawLayer;
|
|
7082
|
+
draw(context?: GridRenderingContext, timestamp?: number): string;
|
|
7083
|
+
startAnimation(animationId: string): string;
|
|
7084
|
+
stopAnimation(animationId: string): string;
|
|
7085
|
+
dispose(): void;
|
|
7086
|
+
}
|
|
7087
|
+
|
|
7049
7088
|
declare class SpreadsheetStore extends DisposableStore {
|
|
7050
7089
|
protected model: Model;
|
|
7051
7090
|
protected getters: Getters;
|
|
7052
|
-
|
|
7091
|
+
protected renderer: {
|
|
7092
|
+
readonly register: (renderer: Renderer) => void;
|
|
7093
|
+
readonly unRegister: (renderer: Renderer) => void;
|
|
7094
|
+
readonly draw: (context?: GridRenderingContext | undefined, timestamp?: number | undefined) => void;
|
|
7095
|
+
readonly startAnimation: (animationId: string) => void;
|
|
7096
|
+
readonly stopAnimation: (animationId: string) => void;
|
|
7097
|
+
readonly mutators: readonly ["register", "unRegister", "draw", "startAnimation", "stopAnimation"];
|
|
7098
|
+
};
|
|
7053
7099
|
constructor(get: Get);
|
|
7054
7100
|
get renderingLayers(): Readonly<LayerName[]>;
|
|
7055
7101
|
protected handle(cmd: Command): void;
|
|
7056
7102
|
protected finalize(): void;
|
|
7057
|
-
drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
|
|
7103
|
+
drawLayer(ctx: GridRenderingContext, layer: LayerName, timestamp: number | undefined): void;
|
|
7058
7104
|
}
|
|
7059
7105
|
|
|
7060
7106
|
interface HighlightProvider {
|
|
@@ -9066,38 +9112,58 @@ interface FigureContent {
|
|
|
9066
9112
|
borderWidth?: number;
|
|
9067
9113
|
}
|
|
9068
9114
|
|
|
9069
|
-
interface
|
|
9115
|
+
interface SidePanelComponentProps {
|
|
9070
9116
|
onCloseSidePanel?: () => void;
|
|
9071
9117
|
[key: string]: any;
|
|
9072
9118
|
}
|
|
9073
9119
|
interface OpenSidePanel {
|
|
9074
9120
|
isOpen: true;
|
|
9075
|
-
props?:
|
|
9121
|
+
props?: SidePanelComponentProps;
|
|
9076
9122
|
key?: string;
|
|
9077
9123
|
}
|
|
9078
9124
|
interface ClosedSidePanel {
|
|
9079
9125
|
isOpen: false;
|
|
9080
9126
|
}
|
|
9081
9127
|
type SidePanelState = OpenSidePanel | ClosedSidePanel;
|
|
9082
|
-
|
|
9083
|
-
|
|
9084
|
-
initialPanelProps: SidePanelProps;
|
|
9128
|
+
interface PanelInfo {
|
|
9129
|
+
initialPanelProps: SidePanelComponentProps;
|
|
9085
9130
|
componentTag: string;
|
|
9086
|
-
|
|
9131
|
+
size: number;
|
|
9132
|
+
isCollapsed?: boolean;
|
|
9133
|
+
}
|
|
9134
|
+
declare class SidePanelStore extends SpreadsheetStore {
|
|
9135
|
+
mutators: readonly ["open", "toggle", "close", "changePanelSize", "resetPanelSize", "togglePinPanel", "closeMainPanel", "changeSpreadsheetWidth", "toggleCollapsePanel"];
|
|
9136
|
+
mainPanel: (PanelInfo & {
|
|
9137
|
+
isCollapsed?: boolean;
|
|
9138
|
+
isPinned?: boolean;
|
|
9139
|
+
}) | undefined;
|
|
9140
|
+
secondaryPanel: PanelInfo | undefined;
|
|
9141
|
+
availableWidth: number;
|
|
9087
9142
|
screenWidthStore: {
|
|
9088
9143
|
readonly setSmallThreshhold: (isSmall: () => boolean) => void;
|
|
9089
9144
|
readonly mutators: readonly ["setSmallThreshhold"];
|
|
9090
9145
|
readonly isSmall: boolean;
|
|
9091
9146
|
};
|
|
9092
|
-
get
|
|
9093
|
-
get
|
|
9094
|
-
get
|
|
9095
|
-
|
|
9096
|
-
|
|
9147
|
+
get isMainPanelOpen(): boolean;
|
|
9148
|
+
get isSecondaryPanelOpen(): boolean;
|
|
9149
|
+
get mainPanelProps(): SidePanelComponentProps | undefined;
|
|
9150
|
+
get mainPanelKey(): string | undefined;
|
|
9151
|
+
get secondaryPanelProps(): SidePanelComponentProps | undefined;
|
|
9152
|
+
get secondaryPanelKey(): string | undefined;
|
|
9153
|
+
get totalPanelSize(): number;
|
|
9154
|
+
private getPanelProps;
|
|
9155
|
+
private getPanelKey;
|
|
9156
|
+
open(componentTag: string, initialPanelProps?: SidePanelComponentProps): void;
|
|
9157
|
+
private _openPanel;
|
|
9158
|
+
toggle(componentTag: string, panelProps: SidePanelComponentProps): void;
|
|
9097
9159
|
close(): void;
|
|
9098
|
-
|
|
9099
|
-
|
|
9160
|
+
closeMainPanel(): void;
|
|
9161
|
+
changePanelSize(panel: "mainPanel" | "secondaryPanel", size: number): void;
|
|
9162
|
+
resetPanelSize(panel: "mainPanel" | "secondaryPanel"): void;
|
|
9163
|
+
togglePinPanel(): void;
|
|
9164
|
+
toggleCollapsePanel(panel: "mainPanel" | "secondaryPanel"): void;
|
|
9100
9165
|
private computeState;
|
|
9166
|
+
changeSpreadsheetWidth(width: number): void;
|
|
9101
9167
|
}
|
|
9102
9168
|
|
|
9103
9169
|
interface SidePanelContent {
|
|
@@ -11602,18 +11668,6 @@ declare class ClientFocusStore extends SpreadsheetStore {
|
|
|
11602
11668
|
unfocusClient(clientId: ClientId): void;
|
|
11603
11669
|
}
|
|
11604
11670
|
|
|
11605
|
-
interface Renderer {
|
|
11606
|
-
drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
|
|
11607
|
-
renderingLayers: Readonly<LayerName[]>;
|
|
11608
|
-
}
|
|
11609
|
-
declare class RendererStore {
|
|
11610
|
-
mutators: readonly ["register", "unRegister", "drawLayer"];
|
|
11611
|
-
private renderers;
|
|
11612
|
-
register(renderer: Renderer): void;
|
|
11613
|
-
unRegister(renderer: Renderer): void;
|
|
11614
|
-
drawLayer(context: GridRenderingContext, layer: LayerName): string;
|
|
11615
|
-
}
|
|
11616
|
-
|
|
11617
11671
|
declare class LocalTransportService implements TransportService<CollaborationMessage> {
|
|
11618
11672
|
private listeners;
|
|
11619
11673
|
sendMessage(message: CollaborationMessage): Promise<void>;
|
|
@@ -11990,16 +12044,64 @@ declare class HeaderGroupContainer extends Component<Props$2, SpreadsheetChildEn
|
|
|
11990
12044
|
get frozenPaneContainerSize(): Pixel;
|
|
11991
12045
|
}
|
|
11992
12046
|
|
|
11993
|
-
|
|
12047
|
+
interface SidePanelProps {
|
|
12048
|
+
panelContent: SidePanelContent;
|
|
12049
|
+
panelProps: SidePanelComponentProps;
|
|
12050
|
+
onCloseSidePanel: () => void;
|
|
12051
|
+
onStartHandleDrag: (ev: MouseEvent) => void;
|
|
12052
|
+
onResetPanelSize: () => void;
|
|
12053
|
+
isPinned?: boolean;
|
|
12054
|
+
onTogglePinPanel?: () => void;
|
|
12055
|
+
onToggleCollapsePanel?: () => void;
|
|
12056
|
+
isCollapsed?: boolean;
|
|
12057
|
+
}
|
|
12058
|
+
declare class SidePanel extends Component<SidePanelProps, SpreadsheetChildEnv> {
|
|
12059
|
+
static template: string;
|
|
12060
|
+
static props: {
|
|
12061
|
+
panelContent: ObjectConstructor;
|
|
12062
|
+
panelProps: ObjectConstructor;
|
|
12063
|
+
onCloseSidePanel: FunctionConstructor;
|
|
12064
|
+
onStartHandleDrag: FunctionConstructor;
|
|
12065
|
+
onResetPanelSize: FunctionConstructor;
|
|
12066
|
+
isPinned: {
|
|
12067
|
+
type: BooleanConstructor;
|
|
12068
|
+
optional: boolean;
|
|
12069
|
+
};
|
|
12070
|
+
onTogglePinPanel: {
|
|
12071
|
+
type: FunctionConstructor;
|
|
12072
|
+
optional: boolean;
|
|
12073
|
+
};
|
|
12074
|
+
onToggleCollapsePanel: {
|
|
12075
|
+
type: FunctionConstructor;
|
|
12076
|
+
optional: boolean;
|
|
12077
|
+
};
|
|
12078
|
+
isCollapsed: {
|
|
12079
|
+
type: BooleanConstructor;
|
|
12080
|
+
optional: boolean;
|
|
12081
|
+
};
|
|
12082
|
+
};
|
|
12083
|
+
spreadsheetRect: Rect;
|
|
12084
|
+
getTitle(): string;
|
|
12085
|
+
get pinInfoMessage(): string;
|
|
12086
|
+
}
|
|
12087
|
+
|
|
12088
|
+
declare class SidePanels extends Component<{}, SpreadsheetChildEnv> {
|
|
11994
12089
|
static template: string;
|
|
11995
12090
|
static props: {};
|
|
12091
|
+
static components: {
|
|
12092
|
+
SidePanel: typeof SidePanel;
|
|
12093
|
+
};
|
|
11996
12094
|
sidePanelStore: Store<SidePanelStore>;
|
|
11997
12095
|
spreadsheetRect: Rect;
|
|
11998
12096
|
setup(): void;
|
|
11999
|
-
|
|
12000
|
-
|
|
12001
|
-
|
|
12002
|
-
|
|
12097
|
+
startHandleDrag(panel: "mainPanel" | "secondaryPanel", ev: MouseEvent): void;
|
|
12098
|
+
get mainPanelProps(): SidePanel["props"] | undefined;
|
|
12099
|
+
get secondaryPanelProps(): SidePanelProps | undefined;
|
|
12100
|
+
get panelList(): {
|
|
12101
|
+
key: string | undefined;
|
|
12102
|
+
props: SidePanelProps | undefined;
|
|
12103
|
+
style: string;
|
|
12104
|
+
}[];
|
|
12003
12105
|
}
|
|
12004
12106
|
|
|
12005
12107
|
interface State$1 {
|
|
@@ -12213,7 +12315,7 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
12213
12315
|
Grid: typeof Grid;
|
|
12214
12316
|
BottomBar: typeof BottomBar;
|
|
12215
12317
|
SmallBottomBar: typeof SmallBottomBar;
|
|
12216
|
-
|
|
12318
|
+
SidePanels: typeof SidePanels;
|
|
12217
12319
|
SpreadsheetDashboard: typeof SpreadsheetDashboard;
|
|
12218
12320
|
HeaderGroupContainer: typeof HeaderGroupContainer;
|
|
12219
12321
|
FullScreenChart: typeof FullScreenChart;
|
|
@@ -13061,4 +13163,4 @@ declare const chartHelpers: {
|
|
|
13061
13163
|
WaterfallChart: typeof WaterfallChart;
|
|
13062
13164
|
};
|
|
13063
13165
|
|
|
13064
|
-
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 };
|
|
13166
|
+
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, BorderDescrWithOpacity, 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, MinimalClipboardData, 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, 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, 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 };
|