@odoo/o-spreadsheet 18.4.0-alpha.9 → 18.4.0
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 +1045 -216
- package/dist/o-spreadsheet.d.ts +152 -51
- package/dist/o-spreadsheet.esm.js +1045 -216
- package/dist/o-spreadsheet.iife.js +1045 -216
- 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,20 @@ 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
|
+
};
|
|
6575
|
+
interface RenderingBox {
|
|
6576
|
+
id: string;
|
|
6563
6577
|
content?: BoxTextContent;
|
|
6564
6578
|
style: Style;
|
|
6565
6579
|
chip?: {
|
|
@@ -6570,19 +6584,22 @@ interface Box extends Rect {
|
|
|
6570
6584
|
color: Color;
|
|
6571
6585
|
};
|
|
6572
6586
|
dataBarFill?: DataBarFill;
|
|
6573
|
-
border?:
|
|
6587
|
+
border?: RenderingBorder;
|
|
6574
6588
|
clipRect?: Rect;
|
|
6575
6589
|
isError?: boolean;
|
|
6576
6590
|
isMerge?: boolean;
|
|
6577
|
-
verticalAlign?: VerticalAlign;
|
|
6578
6591
|
isOverflow?: boolean;
|
|
6579
|
-
overlayColor
|
|
6592
|
+
overlayColor?: Color;
|
|
6580
6593
|
icons: {
|
|
6581
|
-
left?:
|
|
6582
|
-
right?:
|
|
6583
|
-
center?:
|
|
6594
|
+
left?: RenderingGridIcon;
|
|
6595
|
+
right?: RenderingGridIcon;
|
|
6596
|
+
center?: RenderingGridIcon;
|
|
6584
6597
|
};
|
|
6598
|
+
textOpacity?: number;
|
|
6599
|
+
skipCellGridLines?: boolean;
|
|
6600
|
+
disabledAnimation?: boolean;
|
|
6585
6601
|
}
|
|
6602
|
+
type Box = RenderingBox & Rect;
|
|
6586
6603
|
interface Image {
|
|
6587
6604
|
clipIcon: Rect | null;
|
|
6588
6605
|
size: Pixel;
|
|
@@ -6932,7 +6949,7 @@ declare class OTRegistry extends Registry<Map<CoreCommandTypes, TransformationFu
|
|
|
6932
6949
|
interface CellClickableItem {
|
|
6933
6950
|
condition: (position: CellPosition, getters: Getters) => boolean;
|
|
6934
6951
|
execute: (position: CellPosition, env: SpreadsheetChildEnv, isMiddleClick?: boolean) => void;
|
|
6935
|
-
title?: string;
|
|
6952
|
+
title?: string | ((position: CellPosition, getters: Getters) => string);
|
|
6936
6953
|
sequence: number;
|
|
6937
6954
|
}
|
|
6938
6955
|
|
|
@@ -7046,15 +7063,43 @@ declare class Section extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
|
7046
7063
|
};
|
|
7047
7064
|
}
|
|
7048
7065
|
|
|
7066
|
+
interface Renderer {
|
|
7067
|
+
drawLayer(ctx: GridRenderingContext, layer: LayerName, timestamp: number | undefined): void;
|
|
7068
|
+
renderingLayers: Readonly<LayerName[]>;
|
|
7069
|
+
}
|
|
7070
|
+
declare class RendererStore {
|
|
7071
|
+
mutators: readonly ["register", "unRegister", "draw", "startAnimation", "stopAnimation"];
|
|
7072
|
+
private renderers;
|
|
7073
|
+
private model;
|
|
7074
|
+
private context;
|
|
7075
|
+
private animationFrameId;
|
|
7076
|
+
private registeredAnimations;
|
|
7077
|
+
constructor(get: Get);
|
|
7078
|
+
register(renderer: Renderer): void;
|
|
7079
|
+
unRegister(renderer: Renderer): void;
|
|
7080
|
+
private drawLayer;
|
|
7081
|
+
draw(context?: GridRenderingContext, timestamp?: number): string;
|
|
7082
|
+
startAnimation(animationId: string): string;
|
|
7083
|
+
stopAnimation(animationId: string): string;
|
|
7084
|
+
dispose(): void;
|
|
7085
|
+
}
|
|
7086
|
+
|
|
7049
7087
|
declare class SpreadsheetStore extends DisposableStore {
|
|
7050
7088
|
protected model: Model;
|
|
7051
7089
|
protected getters: Getters;
|
|
7052
|
-
|
|
7090
|
+
protected renderer: {
|
|
7091
|
+
readonly register: (renderer: Renderer) => void;
|
|
7092
|
+
readonly unRegister: (renderer: Renderer) => void;
|
|
7093
|
+
readonly draw: (context?: GridRenderingContext | undefined, timestamp?: number | undefined) => void;
|
|
7094
|
+
readonly startAnimation: (animationId: string) => void;
|
|
7095
|
+
readonly stopAnimation: (animationId: string) => void;
|
|
7096
|
+
readonly mutators: readonly ["register", "unRegister", "draw", "startAnimation", "stopAnimation"];
|
|
7097
|
+
};
|
|
7053
7098
|
constructor(get: Get);
|
|
7054
7099
|
get renderingLayers(): Readonly<LayerName[]>;
|
|
7055
7100
|
protected handle(cmd: Command): void;
|
|
7056
7101
|
protected finalize(): void;
|
|
7057
|
-
drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
|
|
7102
|
+
drawLayer(ctx: GridRenderingContext, layer: LayerName, timestamp: number | undefined): void;
|
|
7058
7103
|
}
|
|
7059
7104
|
|
|
7060
7105
|
interface HighlightProvider {
|
|
@@ -9066,38 +9111,58 @@ interface FigureContent {
|
|
|
9066
9111
|
borderWidth?: number;
|
|
9067
9112
|
}
|
|
9068
9113
|
|
|
9069
|
-
interface
|
|
9114
|
+
interface SidePanelComponentProps {
|
|
9070
9115
|
onCloseSidePanel?: () => void;
|
|
9071
9116
|
[key: string]: any;
|
|
9072
9117
|
}
|
|
9073
9118
|
interface OpenSidePanel {
|
|
9074
9119
|
isOpen: true;
|
|
9075
|
-
props?:
|
|
9120
|
+
props?: SidePanelComponentProps;
|
|
9076
9121
|
key?: string;
|
|
9077
9122
|
}
|
|
9078
9123
|
interface ClosedSidePanel {
|
|
9079
9124
|
isOpen: false;
|
|
9080
9125
|
}
|
|
9081
9126
|
type SidePanelState = OpenSidePanel | ClosedSidePanel;
|
|
9082
|
-
|
|
9083
|
-
|
|
9084
|
-
initialPanelProps: SidePanelProps;
|
|
9127
|
+
interface PanelInfo {
|
|
9128
|
+
initialPanelProps: SidePanelComponentProps;
|
|
9085
9129
|
componentTag: string;
|
|
9086
|
-
|
|
9130
|
+
size: number;
|
|
9131
|
+
isCollapsed?: boolean;
|
|
9132
|
+
}
|
|
9133
|
+
declare class SidePanelStore extends SpreadsheetStore {
|
|
9134
|
+
mutators: readonly ["open", "toggle", "close", "changePanelSize", "resetPanelSize", "togglePinPanel", "closeMainPanel", "changeSpreadsheetWidth", "toggleCollapsePanel"];
|
|
9135
|
+
mainPanel: (PanelInfo & {
|
|
9136
|
+
isCollapsed?: boolean;
|
|
9137
|
+
isPinned?: boolean;
|
|
9138
|
+
}) | undefined;
|
|
9139
|
+
secondaryPanel: PanelInfo | undefined;
|
|
9140
|
+
availableWidth: number;
|
|
9087
9141
|
screenWidthStore: {
|
|
9088
9142
|
readonly setSmallThreshhold: (isSmall: () => boolean) => void;
|
|
9089
9143
|
readonly mutators: readonly ["setSmallThreshhold"];
|
|
9090
9144
|
readonly isSmall: boolean;
|
|
9091
9145
|
};
|
|
9092
|
-
get
|
|
9093
|
-
get
|
|
9094
|
-
get
|
|
9095
|
-
|
|
9096
|
-
|
|
9146
|
+
get isMainPanelOpen(): boolean;
|
|
9147
|
+
get isSecondaryPanelOpen(): boolean;
|
|
9148
|
+
get mainPanelProps(): SidePanelComponentProps | undefined;
|
|
9149
|
+
get mainPanelKey(): string | undefined;
|
|
9150
|
+
get secondaryPanelProps(): SidePanelComponentProps | undefined;
|
|
9151
|
+
get secondaryPanelKey(): string | undefined;
|
|
9152
|
+
get totalPanelSize(): number;
|
|
9153
|
+
private getPanelProps;
|
|
9154
|
+
private getPanelKey;
|
|
9155
|
+
open(componentTag: string, initialPanelProps?: SidePanelComponentProps): void;
|
|
9156
|
+
private _openPanel;
|
|
9157
|
+
toggle(componentTag: string, panelProps: SidePanelComponentProps): void;
|
|
9097
9158
|
close(): void;
|
|
9098
|
-
|
|
9099
|
-
|
|
9159
|
+
closeMainPanel(): void;
|
|
9160
|
+
changePanelSize(panel: "mainPanel" | "secondaryPanel", size: number): void;
|
|
9161
|
+
resetPanelSize(panel: "mainPanel" | "secondaryPanel"): void;
|
|
9162
|
+
togglePinPanel(): void;
|
|
9163
|
+
toggleCollapsePanel(panel: "mainPanel" | "secondaryPanel"): void;
|
|
9100
9164
|
private computeState;
|
|
9165
|
+
changeSpreadsheetWidth(width: number): void;
|
|
9101
9166
|
}
|
|
9102
9167
|
|
|
9103
9168
|
interface SidePanelContent {
|
|
@@ -11602,18 +11667,6 @@ declare class ClientFocusStore extends SpreadsheetStore {
|
|
|
11602
11667
|
unfocusClient(clientId: ClientId): void;
|
|
11603
11668
|
}
|
|
11604
11669
|
|
|
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
11670
|
declare class LocalTransportService implements TransportService<CollaborationMessage> {
|
|
11618
11671
|
private listeners;
|
|
11619
11672
|
sendMessage(message: CollaborationMessage): Promise<void>;
|
|
@@ -11990,16 +12043,64 @@ declare class HeaderGroupContainer extends Component<Props$2, SpreadsheetChildEn
|
|
|
11990
12043
|
get frozenPaneContainerSize(): Pixel;
|
|
11991
12044
|
}
|
|
11992
12045
|
|
|
11993
|
-
|
|
12046
|
+
interface SidePanelProps {
|
|
12047
|
+
panelContent: SidePanelContent;
|
|
12048
|
+
panelProps: SidePanelComponentProps;
|
|
12049
|
+
onCloseSidePanel: () => void;
|
|
12050
|
+
onStartHandleDrag: (ev: MouseEvent) => void;
|
|
12051
|
+
onResetPanelSize: () => void;
|
|
12052
|
+
isPinned?: boolean;
|
|
12053
|
+
onTogglePinPanel?: () => void;
|
|
12054
|
+
onToggleCollapsePanel?: () => void;
|
|
12055
|
+
isCollapsed?: boolean;
|
|
12056
|
+
}
|
|
12057
|
+
declare class SidePanel extends Component<SidePanelProps, SpreadsheetChildEnv> {
|
|
12058
|
+
static template: string;
|
|
12059
|
+
static props: {
|
|
12060
|
+
panelContent: ObjectConstructor;
|
|
12061
|
+
panelProps: ObjectConstructor;
|
|
12062
|
+
onCloseSidePanel: FunctionConstructor;
|
|
12063
|
+
onStartHandleDrag: FunctionConstructor;
|
|
12064
|
+
onResetPanelSize: FunctionConstructor;
|
|
12065
|
+
isPinned: {
|
|
12066
|
+
type: BooleanConstructor;
|
|
12067
|
+
optional: boolean;
|
|
12068
|
+
};
|
|
12069
|
+
onTogglePinPanel: {
|
|
12070
|
+
type: FunctionConstructor;
|
|
12071
|
+
optional: boolean;
|
|
12072
|
+
};
|
|
12073
|
+
onToggleCollapsePanel: {
|
|
12074
|
+
type: FunctionConstructor;
|
|
12075
|
+
optional: boolean;
|
|
12076
|
+
};
|
|
12077
|
+
isCollapsed: {
|
|
12078
|
+
type: BooleanConstructor;
|
|
12079
|
+
optional: boolean;
|
|
12080
|
+
};
|
|
12081
|
+
};
|
|
12082
|
+
spreadsheetRect: Rect;
|
|
12083
|
+
getTitle(): string;
|
|
12084
|
+
get pinInfoMessage(): string;
|
|
12085
|
+
}
|
|
12086
|
+
|
|
12087
|
+
declare class SidePanels extends Component<{}, SpreadsheetChildEnv> {
|
|
11994
12088
|
static template: string;
|
|
11995
12089
|
static props: {};
|
|
12090
|
+
static components: {
|
|
12091
|
+
SidePanel: typeof SidePanel;
|
|
12092
|
+
};
|
|
11996
12093
|
sidePanelStore: Store<SidePanelStore>;
|
|
11997
12094
|
spreadsheetRect: Rect;
|
|
11998
12095
|
setup(): void;
|
|
11999
|
-
|
|
12000
|
-
|
|
12001
|
-
|
|
12002
|
-
|
|
12096
|
+
startHandleDrag(panel: "mainPanel" | "secondaryPanel", ev: MouseEvent): void;
|
|
12097
|
+
get mainPanelProps(): SidePanel["props"] | undefined;
|
|
12098
|
+
get secondaryPanelProps(): SidePanelProps | undefined;
|
|
12099
|
+
get panelList(): {
|
|
12100
|
+
key: string | undefined;
|
|
12101
|
+
props: SidePanelProps | undefined;
|
|
12102
|
+
style: string;
|
|
12103
|
+
}[];
|
|
12003
12104
|
}
|
|
12004
12105
|
|
|
12005
12106
|
interface State$1 {
|
|
@@ -12213,7 +12314,7 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
12213
12314
|
Grid: typeof Grid;
|
|
12214
12315
|
BottomBar: typeof BottomBar;
|
|
12215
12316
|
SmallBottomBar: typeof SmallBottomBar;
|
|
12216
|
-
|
|
12317
|
+
SidePanels: typeof SidePanels;
|
|
12217
12318
|
SpreadsheetDashboard: typeof SpreadsheetDashboard;
|
|
12218
12319
|
HeaderGroupContainer: typeof HeaderGroupContainer;
|
|
12219
12320
|
FullScreenChart: typeof FullScreenChart;
|
|
@@ -13061,4 +13162,4 @@ declare const chartHelpers: {
|
|
|
13061
13162
|
WaterfallChart: typeof WaterfallChart;
|
|
13062
13163
|
};
|
|
13063
13164
|
|
|
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 };
|
|
13165
|
+
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 };
|